1234567891011121314151617181920212223 |
- //
- // ELMeatProbeBoxBleHeader.h
- // Pods
- //
- // Created by LarryZhang on 2023/3/30.
- //
-
- #ifndef ELMeatProbeBoxBleHeader_h
- #define ELMeatProbeBoxBleHeader_h
-
- typedef NS_ENUM(UInt8, ELMeatProbeBoxCMD) {
-
- ELMeatProbeBoxCMDAppGetStatus_Type01 = 0x01, //0x01:Type:APP 获取设备状态
-
- ELMeatProbeBoxCMDMcuUploadStatus_Type02 = 0x02, //0x02:Type:设备上报设备数据
-
- ELMeatProbeBoxCMDCustomData_Type03 = 0x03, //0x03:Type:APP 设置、获取设备相关信息
-
- ELMeatProbeBoxCMDAppSwitchUnit_Type04 = 0x04, //0x04:Type:切换单位
-
- };
-
- #endif /* ELMeatProbeBoxBleHeader_h */
|