iOS AILinkBleSDK - 蓝牙SDK
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

ELAutomaticThermometerDataModel.h 706B

1234567891011121314151617181920212223242526272829
  1. //
  2. // ELAutomaticThermometerDataModel.h
  3. // Elink
  4. //
  5. //
  6. #import <Foundation/Foundation.h>
  7. #import "ELSDKHeader.h"
  8. #import "ELAutomaticThermometerHeader.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ELAutomaticThermometerDataModel : NSObject
  11. @property (nonatomic, assign) AutomaticThermometerBleDataType dataType; //0x01:体表温度 0x02:计量温度
  12. @property (nonatomic, assign) UInt16 temperature;//温度
  13. @property (nonatomic, assign) ELDeviceTemperatureUnit unit;//单位 0:℃ 1:℉
  14. @property (nonatomic, assign) NSInteger tempPoint; //小数点偏移位置 0:无小数点。 N:N 位小数点。
  15. @property (nonatomic, copy, readonly) NSString *temperatureString;
  16. @end
  17. NS_ASSUME_NONNULL_END