/** * A simple Azure IoT example for sending telemetry. */ #include #include "Esp32MQTTClient.h" // Please input the SSID and password of WiFi const char* ssid = ""; const char* password = ""; /*String containing Hostname, Device Id & Device Key in the format: */ /* "HostName=;DeviceId=;SharedAccessKey=" */ /* "HostName=;DeviceId=;SharedAccessSignature=" */ static const char* connectionString = ""; static bool hasIoTHub = false; void setup() { Serial.begin(115200); Serial.println("Starting connecting WiFi."); delay(10); WiFi.begin(ssid, password); while (WiFi.status() != WL_CONNECTED) { delay(500); Serial.print("."); } Serial.println("WiFi connected"); Serial.println("IP address: "); Serial.println(WiFi.localIP()); if (!Esp32MQTTClient_Init((const uint8_t*)connectionString)) { hasIoTHub = false; Serial.println("Initializing IoT hub failed."); return; } hasIoTHub = true; } void loop() { Serial.println("start sending events."); if (hasIoTHub) { char buff[128]; // replace the following line with your data sent to Azure IoTHub snprintf(buff, 128, "{\"topic\":\"iot\"}"); if (Esp32MQTTClient_SendEvent(buff)) { Serial.println("Sending data succeed"); } else { Serial.println("Failure..."); } delay(5000); } }