iOS AILinkBleSDK - 蓝牙SDK
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ELOximeterBleModel.h 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // ELOximeterBleModel.h
  3. // Elink
  4. //
  5. // Created by cliCk on 2020/11/16.
  6. // Copyright © 2020 iot_iMac. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #define ELOximeter_Max_Pleth 1000.0f
  10. #define ELOximeter_Min_Pleth 0.0f
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface ELOximeterBleModel : NSObject
  13. /** 血氧(%)0-100 %,若该值无效则为负数 */
  14. @property (nonatomic, assign) NSInteger SpO2;
  15. /** 脉率(bpm)0-250 */
  16. @property (nonatomic, assign) NSInteger pulseRate;
  17. /** PI (血流灌注指数, 无单位 , 1 位小数) 0-254(对应 0.0-25.4)*/
  18. @property (nonatomic, assign) NSInteger pi;
  19. /** 电量(%)(power ,单位%) 0-100 */
  20. @property (nonatomic, assign) NSInteger power;
  21. /** 呼吸频率 Respiratory Rate(RR/min ,大端序,一位小数点)0.0-100.0 若该值无效,则为 0xFFFF*/
  22. @property (nonatomic, assign) NSInteger rrValue;
  23. /**脉率曲线值( Plethysmogram 体积描记图,大端序) 0-0xFFFE 若该值无效,则为 0xFFFF*/
  24. @property (nonatomic, assign) NSInteger pleth;
  25. /**脉率曲线波谷(棒图,大端序,暂时废弃不用) 0-0xFFFF 若该值无效,则为 0xFFFF*/
  26. @property (nonatomic, assign) NSInteger pleth2;
  27. /**佩戴状态 0:未佩戴 1:已佩戴*/
  28. @property (nonatomic, assign) NSInteger wearState;
  29. @end
  30. NS_ASSUME_NONNULL_END