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.

ELThermometerBleModel.h 687B

12345678910111213141516171819202122232425
  1. //
  2. // ELThermometerBleModel.h
  3. // Elink
  4. //
  5. // Created by cliCk on 2019/5/28.
  6. // Copyright © 2019 iot_iMac. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "ELSDKHeader.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface ELThermometerBleModel : NSObject
  12. @property (nonatomic,assign) ELDeviceTemperatureUnit unit;//单位
  13. @property (nonatomic,assign) NSUInteger temperature;//温度
  14. ///Stability flag: 0 real-time data, 1 stable data(稳定标志:0 实时数据,1 稳定数据)
  15. @property (nonatomic,assign) BOOL dataType;
  16. @property (nonatomic,copy) NSString *unitStr;
  17. @property (nonatomic,assign) NSInteger tempPoint; //小数点偏移位置
  18. @end
  19. NS_ASSUME_NONNULL_END