Hi,
Property values are sent in a separate message type, typically on device start up and whenever a property value changes on the device. The values show up in the raw data view looking something like this:
{
"device_info": {
"processorArchitecture": {
"reported": {
"value": "arm64-v8a"
}
},
"processorManufacturer": {
"reported": {
"value": "unknown"
}
},
"totalStorage": {
"reported": {
"value": 121313124352
}
},
"totalMemory": {
"reported": {
"value": 3603628032
}
}
},
"readOnlyProp": {
"reported": {
"value": "editable"
}
},
"_eventtype": "Property",
"_timestamp": "2021-11-16T10:19:45.997Z"
}
- To see examples of how property messages are sent from a device, take a look at these code samples: https://learn.microsoft.com/azure/iot-central/core/tutorial-connect-device
- For detailed information about the property message payloads, see: https://learn.microsoft.com/azure/iot-central/core/concepts-telemetry-properties-commands
- For more information about defining and using different property types, see: https://learn.microsoft.com/azure/iot-central/core/howto-use-properties
Regards,
Dominic