Getting StartedAsync Mode

Async Mode

ElegantOTA includes an async mode feature, enabling asynchronous web server functionality for managing OTA updates. When async mode is enabled, ElegantOTA utilizes ESPAsyncWebServer to handle all HTTP routes.

💡

This mode should only be enabled if you are using ESPAsyncWebServer library in your project/firmware.

For ESP8266

For ESP32

For RP2040 (+ WiFi)


Use of Unrecommended Dependencies (Experimental)

Incase your project is strictly dependent on a fork of dependency which is not listed above, you need to follow these steps if you are using PlatformIO:

  1. Please make sure to install ElegantOTA ‘manually’ using the steps provided in installation guide

  2. Open library.json file in ElegantOTA library folder and delete the dependencies parameter. This will disable auto installation of recommended dependencies.


Enabling Async Mode

For Arduino IDE

  1. Go to your Arduino libraries directory

  2. Open ElegantOTA folder and then open src folder

  3. Locate the ELEGANTOTA_USE_ASYNC_WEBSERVER macro in the ElegantOTA.h file, and set it to 1:

    #define ELEGANTOTA_USE_ASYNC_WEBSERVER 1
  4. Save the changes to the ElegantOTA.h file.

  5. You are now ready to use ElegantOTA in async mode for your OTA updates, utilizing the ESPAsyncWebServer library.

For PlatformIO

If you use PlatformIO then we can use a neat trick! You can set build_flags in your platformio.ini file that enables Async Mode of ElegantOTA.

  1. Open platformio.ini file of your project
  2. Paste this line build_flags=-DELEGANTOTA_USE_ASYNC_WEBSERVER=1 at bottom
  3. Done!

PlatformIO will now compile ElegantOTA in Async Mode!


Benefits of Async Mode

Enabling async mode for ElegantOTA offers several advantages:

  1. Non-blocking Operation: In async mode, ElegantOTA leverages the asynchronous web server capabilities of ESPAsyncWebServer. This means that OTA updates won’t block your device’s main loop. It allows your device to continue executing other tasks while handling OTA updates in the background.

  2. Improved Responsiveness: Your device can remain responsive to user interactions or other processes during OTA updates, ensuring a smoother user experience.

Copyright © 2024 Softt. All rights reserved.