Posts

Showing posts from August, 2022

Android #36 IoT 基本程式庫 Wifimanager FOTA MQTT (IOT Essential Code base with wifimanager, ElegantOTA, & MQTT)

Image
Hi, Welcome to weekend project with Stonez56 This week's Arduino episode #37, "Essential IoT Code Base- Wifimanager FOTA + MQTT" Here is the source code: https://stonez56.blogspot.com/2022/08/android-36-iot-wifimanager-fota-mqtt.html   Today, I will show how to combine three commonly used IoT libraries; WiFimanager, AsyncElegantOTA, and MQTT To become a common IoT code base. So, for our future projects, ESP8266 or ESP32, would have these basic functions. Let's first look at these three libraries: Wifimanager = Wi-Fi password management, no need to re-burn the code to change the Wi-Fi SSID & password FOTA = Use Wi-Fi to update ESP32 code, you can burn code without connecting to USB MQTT = Streamlined and lightweight communication protocol (Message Queueing Telemetry Transport) This episode will only introduce how to integrate MQTT into Wifimanager + AsyncElegantFOTA. To learn how to start Wifimanager + AsyncElegantOTA, Please watch Android #27 Wifimanager + OTA for