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.

ELAILinkBleManager+MeatProbe.h 580B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // ELAILinkBleManager+MeatProbe.h
  3. // AILinkBleSDK
  4. //
  5. // Created by LarryZhang on 2022/11/22.
  6. //
  7. #import "ELAILinkBleManager.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface ELAILinkBleManager (MeatProbe)
  10. //MeatProbe 设置设备信息 0x35
  11. - (void)meatProbeSendCustomData:(NSData *_Nonnull)customData;
  12. //MeatProbe 设置设备信息 0x35 请求
  13. - (void)meatProbeRequestCustomData;
  14. //切换温度单位 A7
  15. - (void)meatProbeSwitchUint:(ELDeviceTemperatureUnit)unit;
  16. //关闭自动关机指令 A7 **调试阶段使用
  17. - (void)meatProbeCloseAutoOff;
  18. @end
  19. NS_ASSUME_NONNULL_END