iOS AILinkBleSDK - 蓝牙SDK
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

ELBodyFatScaleBleUserModel.h 1.2KB

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // ELBodyFatScaleBleUserModel.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. #import "ELBodyFatScaleBleHeader.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. /**
  12. APP下发当前用户或者用户列表前需要将appUser转换为如下bleUser
  13. */
  14. @interface ELBodyFatScaleBleUserModel : NSObject
  15. @property (nonatomic, assign) long long createTime;
  16. @property (nonatomic, assign) NSUInteger usrID;
  17. @property (nonatomic, assign) BodyFatScaleRole role; //角色
  18. @property (nonatomic, assign) ELBluetoothUserSex sex; //性别
  19. @property (nonatomic, assign) NSUInteger age; //Age 28 (only counts for the whole year)(年龄28(只算整年))
  20. @property (nonatomic, assign) NSUInteger height; //Height 170 (Unit fixed to death: cm, accuracy 1)(身高170(单位定死:cm,精度1))
  21. @property (nonatomic, assign) NSUInteger weight; //Weight 562 (Unit fixed death: kg, accuracy 0.1) 120lb-》 54.4lkg-》 545(体重562(单位定死:kg,精度0.1) 120lb-》54.4lkg-》545)
  22. @property (nonatomic, assign) NSUInteger adc;//Impedance 1230 (accuracy is 1Ω)(阻抗1230(精度为 1Ω))
  23. @end
  24. NS_ASSUME_NONNULL_END