iOS AILinkBleSDK - 蓝牙SDK
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

ELHygrothermographBleRecordData.h 530B

123456789101112131415161718192021222324252627
  1. //
  2. // ELHygrothermographBleRecordData.h
  3. // AILinkBleSDK
  4. //
  5. // Created by cliCk on 2021/5/8.
  6. // Copyright © 2021 IOT. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. /** 温湿度计历史记录对象模型 */
  11. @interface ELHygrothermographBleRecordData : NSObject
  12. /** 开机时间 */
  13. @property (nonatomic, assign) long long bootTime;
  14. /** 温度 摄氏度 */
  15. @property (nonatomic, assign) float tem;
  16. /** 湿度 % */
  17. @property (nonatomic, assign) float hum;
  18. @end
  19. NS_ASSUME_NONNULL_END