Hi, I have a device on Azure IoT Central. I can send telemetry data to Azure IoT Central from the imp003 successfully like this:
local msgBody = { ["RepairCounterT1"] = value };
local message = AzureIoTHub.Message(http.jsonencode(msgBody));
_azureClient.sendMessage(message, _onMessageSent.bindenv(this));
How can I read that data that I sent to the Azure IoT Central?