From 73094b3f8889b8c0ce13f0cf69821d3d348c674c Mon Sep 17 00:00:00 2001 From: Ayush Sharma Date: Thu, 19 Oct 2023 23:16:07 +0530 Subject: [PATCH] - Updated Async Mode Documentation --- docs/async-mode.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/async-mode.md b/docs/async-mode.md index 347394f..faa1b49 100644 --- a/docs/async-mode.md +++ b/docs/async-mode.md @@ -15,15 +15,17 @@ One of the features of ElegantOTA is the async mode, which provides asynchronous ### For Arduino IDE: -1. Locate the `ELEGANTOTA_USE_ASYNC_WEBSERVER` macro in the `ElegantOTA.h` file, and set it to `1`: +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`: ```cpp #define ELEGANTOTA_USE_ASYNC_WEBSERVER 1 ``` -2. Save the changes to the `ElegantOTA.h` file. +4. Save the changes to the `ElegantOTA.h` file. -3. You are now ready to use ElegantOTA in async mode for your OTA updates, utilizing the ESPAsyncWebServer library. +5. You are now ready to use ElegantOTA in async mode for your OTA updates, utilizing the ESPAsyncWebServer library. ### For PlatformIO: