Skip to content

即将完成MQTT协议接入预览

xiaodingding edited this page Jul 25, 2022 · 2 revisions

数据上报topic

/device/{deviceId}/report

{ "deviceId": "123", "messageId":123, "time":"20220712 01:02:03", "property":{ "tempure":23.2, } "event":{ "hight":"当前温度值", "addr":"", } }


设备属性读取Topic

/device/{deviceId}/read

{ "deviceId":"123", "messageId": "", "properties":["sn","model"] //要读取到属性列表 }


设备属性读取回复Topic

/device/{deviceId}/read/reply

{ "deviceId":"123", "messageId": "", "properties":{"sn":"13","model":"456"} //要读取到属性列表 }


设备属性配置Topic

/device/{deviceId}/write

{ "time":"20220712 01:02:03", //毫秒时间戳 "messageId":"消息ID", "deviceId":"设备ID", "properties":{"color":"red"} //要设置的属性 }


设备功能调用Topic

/device/{deviceId}/funtion

{ "time":"20220712 01:02:03", //毫秒时间戳 "messageId":"消息ID", "deviceId":"设备ID", "do":{"do_1":0} //要设置的属性 }