智能边缘平台 IEF-设备数据上云:上报设备属性实际值
上报设备属性实际值
- 发布终端设备孪生更新事件。
Topic:$hw/events/device/{device_id}/twin/update
Payload:{"event_id":"", "timestamp":0, "twin":{"属性":{"actual":{"value":"设备实际值"}}}}
示例如下:
{ "event_id": "", "timestamp": 0, "twin": { "temperature": { "actual": { "value": "2" } } } }
发布后,在云端可以观察到设备孪生的实际值发生了相应的变化,如图2所示。
- 在边缘侧订阅设备孪生更新结果,能收到设备孪生更新事件的结果。
Topic:$hw/events/device/{device_id}/twin/update/result
更新的结果如下所示。
{ "event_id": "", "timestamp": 1554992093859, "twin": { "temperature": { "actual": { "value": "2", "metadata": { "timestamp": 1554992093859 } }, "optional": true, "metadata": { "type": "int" } } } }