iOS AILinkBleSDK - 蓝牙SDK
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

ELHygrothermographBleHeader.h 1.3KB

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // ELHygrothermographBleHeader.h
  3. // AILinkBleSDK
  4. //
  5. // Created by cliCk on 2021/5/8.
  6. // Copyright © 2021 IOT. All rights reserved.
  7. //
  8. #ifndef ELHygrothermographBleHeader_h
  9. #define ELHygrothermographBleHeader_h
  10. /** 温湿度计 ble head type 枚举定义 */
  11. typedef NS_ENUM (NSInteger, Hygrothermograph_BleHeadType) {
  12. /** App获取设备状态 */
  13. Hygrothermograph_BleHeadType_App_GetDevState = 0x01 ,
  14. /** 设备定时返回设备状态 */
  15. Hygrothermograph_BleHeadType_MCU_ReturnDevState = 0x02 ,
  16. /** App设备变化阀值 */
  17. Hygrothermograph_BleHeadType_App_SetDevThreshold = 0x03 ,
  18. /** 设备定时返回阀值 */
  19. Hygrothermograph_BleHeadType_MCU_ReturnDevThreshold = 0x04 ,
  20. /** App读取设备的历史数据 */
  21. Hygrothermograph_BleHeadType_App_GetDevRecordData = 0x05 ,
  22. /** 设备返回历史数据 */
  23. Hygrothermograph_BleHeadType_MCU_ReturnRecordData = 0x06 ,
  24. /** 设置采样频率和保存频率 */
  25. Hygrothermograph_BleHeadType_APP_SetSamplingFrequency = 0x07 ,
  26. /** 设备返回采样频率和保存频率 */
  27. Hygrothermograph_BleHeadType_MCU_ReturnSamplingFrequency = 0x08 ,
  28. /** App返回收到历史数据反馈 */
  29. Hygrothermograph_BleHeadType_App_DataFeedback = 0x09 ,
  30. };
  31. #endif /* ELHygrothermographBleHeader_h */