iOS AILinkBleSDK - 蓝牙SDK
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

ELBroadcastHeightGaugeBleDataModel.h 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. //
  2. // ELBroadcastHeightGaugeBleDataModel.h
  3. // AILinkBleSDK
  4. //
  5. // Created by cliCk on 2021/3/19.
  6. // Copyright © 2021 IOT. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "ELBroadcastHeightGaugeBleHeader.h"
  10. #import "ELSDKHeader.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface ELBroadcastHeightGaugeBleDataModel : NSObject
  13. @property (nonatomic, assign) int cid;
  14. @property (nonatomic, assign) int vid;
  15. @property (nonatomic, assign) int pid;
  16. @property (nonatomic, copy) NSString *mac;
  17. /** Data serial number 流水号 */
  18. @property (nonatomic, assign) NSInteger serialNumber;
  19. /** Measurement status 测量标识符 */
  20. @property (nonatomic, assign) BroadcastHeightGuage_TestState testState;
  21. /** 身高数据 */
  22. @property (nonatomic, assign) NSUInteger height;
  23. /** 身高小数点位 */
  24. @property (nonatomic, assign) NSUInteger heightPoint;
  25. /** 身高单位 */
  26. @property (nonatomic, assign) ELDeviceHeightUnit heightUnit;
  27. /** 体重数据 */
  28. @property (nonatomic, assign) NSInteger weight;
  29. /** 体重小数点位 */
  30. @property (nonatomic, assign) NSUInteger weightPoint;
  31. /** 体重单位 */
  32. @property (nonatomic, assign) ELDeviceWeightUnit weightUnit;
  33. /** 电量 0~100 ,如果值为负数,则代表该设备无电量检测 */
  34. @property (nonatomic, assign) NSInteger power;
  35. /** time(时间) */
  36. @property (nonatomic, assign) long long createTime;
  37. @end
  38. NS_ASSUME_NONNULL_END