How to Implement OTA Updates for ESP32 with FreeRTOS on Google Cloud IoT Core?
@Middleware & OS
Hello guys am interested in
over the air
(OTA) firmware update of an ESP32 microcontroller running FreeRTOS and connect it to Google Cloud IoT Core for data monitoring, please i would need any form of guidance i can get i.e code examples or documentation and suggested libraries that can aid me in OTA updates for ESP32 with FreeRTOSSolution:Jump to solution
Your code should be identical or similar to 👇
```cpp
#include <WiFi.h>
#include <PubSubClient.h>
#include <ArduinoOTA.h>...
5 Replies
Hi @Boss lady HTTP and MQTT are popular protocols for OTA updates on an ESP32 , which are u leaning on to?
MQTT
@Boss lady Create an account on their official site, install necessary libraries like ArduinoOTA library, PubSubClient library, etc then configure the network by connecting your ESP32 to the wifi network using the Wi-Fi library, then you implement OTA firmware update functionality
Solution
Your code should be identical or similar to 👇
Which frame works Arduino or esp-idf?