iOS AILinkBleSDK - 蓝牙SDK
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

ELHeightBodyFatScaleBleWeightBodyModel.h 1.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //
  2. // ELHeightBodyFatScaleBleWeightBodyModel.h
  3. // AILinkBleSDK
  4. //
  5. // Created by cliCk on 2021/3/25.
  6. // Copyright © 2021 IOT. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. /** 体脂数据对象模型 */
  11. @interface ELHeightBodyFatScaleBleWeightBodyModel : NSObject
  12. ///Body fat rate, need / 10(体脂率,需要/10)
  13. @property (nonatomic, assign) NSUInteger bfr;
  14. ///Subcutaneous fat rate, need / 10(皮下脂肪率,需要/10)
  15. @property (nonatomic, assign) NSUInteger sfr;
  16. ///Visceral fat rate with an accuracy of 1(内脏脂肪率,精度为1)
  17. @property (nonatomic, assign) NSUInteger uvi;
  18. ///Muscle rate, need / 10(肌肉率,需要/10)
  19. @property (nonatomic, assign) NSUInteger rom;
  20. ///Basal metabolic rate with an accuracy of 1(基础代谢率,精度为1)
  21. @property (nonatomic, assign) NSUInteger bmr;
  22. ///Body age with an accuracy of 1(身体年龄,精度为1)
  23. @property (nonatomic, assign) NSUInteger bodyAge;
  24. ///Bone quality, need / 10(骨骼质量,需要/10)
  25. @property (nonatomic, assign) NSUInteger bm;
  26. ///Water content, need / 10(水含量,需要/10)
  27. @property (nonatomic, assign) NSUInteger vwc;
  28. ///Protein rate, need / 10(蛋白率,需要/10)
  29. @property (nonatomic, assign) NSUInteger pp;
  30. ///BMI 需要/10
  31. @property (nonatomic, assign) NSUInteger BMI;
  32. ///Heart rate with an accuracy of 1(心率,精度为1)
  33. @property (nonatomic, assign) NSUInteger heartRate;
  34. ///肥胖等级
  35. @property (nonatomic, assign) NSUInteger obesityGrade;
  36. @end
  37. NS_ASSUME_NONNULL_END