iOS AILinkBleSDK - 蓝牙SDK
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

ELHeightBodyFatScaleBleWeightBodyModel.h 2.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. //以下10个数据的单位以单位和小数点以weight的为准
  37. //体脂-右上
  38. @property (nonatomic, assign) NSUInteger fatMassRightTop;
  39. //体脂-右下
  40. @property (nonatomic, assign) NSUInteger fatMassRightBottom;
  41. //体脂-左上
  42. @property (nonatomic, assign) NSUInteger fatMassLeftTop;
  43. //体脂-左下
  44. @property (nonatomic, assign) NSUInteger fatMassLeftBottom;
  45. //体脂-躯干
  46. @property (nonatomic, assign) NSUInteger fatMassBody;
  47. //肌肉-右上
  48. @property (nonatomic, assign) NSUInteger musleMassRightTop;
  49. //肌肉-右下
  50. @property (nonatomic, assign) NSUInteger musleMassRightBottom;
  51. //肌肉-左上
  52. @property (nonatomic, assign) NSUInteger musleMassLeftTop;
  53. //肌肉-左下
  54. @property (nonatomic, assign) NSUInteger musleMassLeftBottom;
  55. //肌肉-躯干
  56. @property (nonatomic, assign) NSUInteger musleMassBody;
  57. @end
  58. NS_ASSUME_NONNULL_END