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.

ELBodyFatScaleBleWeightModel.h 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. //
  2. // ELBodyFatScaleBodyDataModel.h
  3. // Elink
  4. //
  5. // Created by iot_user on 2019/7/18.
  6. // Copyright © 2019 iot_iMac. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. /**
  11. Raw data received from ble: all integers(从ble接收的原始数据:都是整数)
  12. */
  13. @interface ELBodyFatScaleBleWeightModel : NSObject
  14. @property (nonatomic, assign) NSUInteger weight;
  15. @property (nonatomic, assign) NSUInteger weightUnit;
  16. @property (nonatomic, assign) NSUInteger weightPoint;
  17. ///Body fat rate, need / 10(体脂率,需要/10)
  18. @property (nonatomic, assign) NSUInteger bfr;
  19. ///Subcutaneous fat rate, need / 10(皮下脂肪率,需要/10)
  20. @property (nonatomic, assign) NSUInteger sfr;
  21. ///Visceral fat rate with an accuracy of 1(内脏脂肪率,精度为1)
  22. @property (nonatomic, assign) NSUInteger uvi;
  23. ///Muscle rate, need / 10(肌肉率,需要/10)
  24. @property (nonatomic, assign) NSUInteger rom;
  25. ///Basal metabolic rate with an accuracy of 1(基础代谢率,精度为1)
  26. @property (nonatomic, assign) NSUInteger bmr;
  27. ///Bone quality, need / 10(骨骼质量,需要/10)
  28. @property (nonatomic, assign) NSUInteger bm;
  29. ///Water content, need / 10(水含量,需要/10)
  30. @property (nonatomic, assign) NSUInteger vwc;
  31. ///Body age with an accuracy of 1(身体年龄,精度为1)
  32. @property (nonatomic, assign) NSUInteger bodyAge;
  33. ///Protein rate, need / 10(蛋白率,需要/10)
  34. @property (nonatomic, assign) NSUInteger pp;
  35. ///Creation time with an accuracy of 1(创建时间,精度为1)
  36. @property (nonatomic, assign) long long createTime;
  37. ///Impedance, accuracy is 1(阻抗,精度为1)
  38. @property (nonatomic, assign) NSUInteger adc;
  39. ///Heart rate with an accuracy of 1(心率,精度为1)
  40. @property (nonatomic, assign) NSUInteger heartRate;
  41. ///Algorithm ID(算法ID)
  42. @property (nonatomic, assign) NSUInteger algNum;
  43. @end
  44. NS_ASSUME_NONNULL_END