设备接入 IOTDA-Java Demo使用说明:属性上报

时间:2024-07-30 11:30:47

属性上报

属性上报是指设备主动向平台上报自己的属性,更多信息请参考设备属性上报

1
2
3
4
//上报json数据,注意serviceId要与产品模型中的定义对应
String jsonMsg = "{\"services\": [{\"service_id\": \"Temperature\",\"properties\": {\"value\": 57}},{\"service_id\": \"Battery\",\"properties\": {\"level\": 80}}]}";
MqttMessage message = new MqttMessage(jsonMsg.getBytes());
client.publish(getRreportTopic(), message, qosLevel, new IMqttActionListener();
support.huaweicloud.com/devg-iothub/iot_02_2128.html