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.

ELForeheadBleDataModel.h 553B

123456789101112131415161718192021222324
  1. //
  2. // ELForeheadBleDataModel.h
  3. // Elink
  4. //
  5. // Created by iot_user on 2019/5/10.
  6. // Copyright © 2019 iot_iMac. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "ELForeheadHeader.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface ELForeheadBleDataModel : NSObject
  12. @property (nonatomic, assign) NSString * temperature;//温度
  13. @property (nonatomic, assign) ELDeviceTemperatureUnit unit;//单位
  14. @property (nonatomic, assign) NSInteger point;//小数点
  15. @property (nonatomic, assign) long long createTime;//时间
  16. @end
  17. NS_ASSUME_NONNULL_END