Skip to content
This repository was archived by the owner on Feb 4, 2023. It is now read-only.

Commit 54b4992

Browse files
authored
v1.6.1
### Releases v1.6.1 1. Modify multiWiFi-related timings to work better with latest esp32 core v1.0.6
1 parent 6eed0b6 commit 54b4992

File tree

37 files changed

+164
-112
lines changed

37 files changed

+164
-112
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ If you don't find anything, please [open a new issue](https://github.com/khoih-p
1515
Please ensure to specify the following:
1616

1717
* Arduino IDE version (e.g. 1.8.13) or Platform.io version
18-
* `ESP8266` or `ESP32` Core Version (e.g. ESP8266 core v2.7.4 or ESP32 v1.0.4)
18+
* `ESP8266` or `ESP32` Core Version (e.g. ESP8266 core v2.7.4 or ESP32 v1.0.6)
1919
* Contextual information (e.g. what you were trying to achieve)
2020
* Simplest possible steps to reproduce
2121
* Anything that might be relevant in your opinion, such as:
@@ -29,7 +29,7 @@ Please ensure to specify the following:
2929
Arduino IDE version: 1.8.13
3030
ESP8266 Core Version 2.7.4
3131
OS: Ubuntu 20.04 LTS
32-
Linux xy-Inspiron-3593 5.4.0-66-generic #74-Ubuntu SMP Wed Jan 27 22:54:38 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
32+
Linux xy-Inspiron-3593 5.4.0-70-generic #78-Ubuntu SMP Fri Mar 19 13:29:52 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
3333
3434
Context:
3535
I encountered an endless loop while trying to connect to Local WiFi.

README.md

Lines changed: 21 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
* [Why Async is better](#why-async-is-better)
1717
* [Currently supported Boards](#currently-supported-boards)
1818
* [Changelog](#changelog)
19+
* [Releases v1.6.1](#releases-v161)
1920
* [Releases v1.6.0](#releases-v160)
2021
* [Major Releases v1.5.0](#major-releases-v150)
2122
* [Releases v1.4.3](#releases-v143)
@@ -202,6 +203,10 @@ This [**ESPAsync_WiFiManager_Lite** library](https://github.com/khoih-prog/ESPAs
202203

203204
## Changelog
204205

206+
### Releases v1.6.1
207+
208+
1. Modify multiWiFi-related timings to work better with latest esp32 core v1.0.6
209+
205210
### Releases v1.6.0
206211

207212
1. Fix WiFi Scanning bug.
@@ -279,7 +284,7 @@ This [**ESPAsync_WiFiManager_Lite** library](https://github.com/khoih-prog/ESPAs
279284

280285
1. [`Arduino IDE 1.8.13+` for Arduino](https://www.arduino.cc/en/Main/Software)
281286
2. [`ESP8266 Core 2.7.4+`](https://github.com/esp8266/Arduino) for ESP8266-based boards. [![Latest release](https://img.shields.io/github/release/esp8266/Arduino.svg)](https://github.com/esp8266/Arduino/releases/latest/)
282-
3. [`ESP32 Core 1.0.5+`](https://github.com/espressif/arduino-esp32) for ESP32-based boards. [![Latest release](https://img.shields.io/github/release/espressif/arduino-esp32.svg)](https://github.com/espressif/arduino-esp32/releases/latest/)
287+
3. [`ESP32 Core 1.0.6+`](https://github.com/espressif/arduino-esp32) for ESP32-based boards. ![Release Version](https://img.shields.io/github/release/espressif/arduino-esp32.svg?style=plastic)
283288
4. [`ESP32S2 Core 1.0.4+`](https://github.com/espressif/arduino-esp32/tree/esp32s2) for ESP32-S2-based boards.
284289
5. [`ESPAsyncWebServer v1.2.3+`](https://github.com/me-no-dev/ESPAsyncWebServer) for all ESP32/ESP8266-based boards.
285290
6. [`ESPAsyncTCP v1.2.2+`](https://github.com/me-no-dev/ESPAsyncTCP) for ESP8266-based boards.
@@ -2129,7 +2134,7 @@ ESPAsync_wifiManager.setRemoveDuplicateAPs(false);
21292134
#error This code is intended to run on the ESP8266 or ESP32 platform! Please check your Tools->Board setting.
21302135
#endif
21312136

2132-
#define ESP_ASYNC_WIFIMANAGER_VERSION_MIN_TARGET "ESPAsync_WiFiManager v1.6.0"
2137+
#define ESP_ASYNC_WIFIMANAGER_VERSION_MIN_TARGET "ESPAsync_WiFiManager v1.6.1"
21332138

21342139
// Use from 0 to 4. Higher number, more debugging messages and memory usage.
21352140
#define _ESPASYNC_WIFIMGR_LOGLEVEL_ 3
@@ -2507,7 +2512,8 @@ uint8_t connectMultiWiFi()
25072512
#if ( ARDUINO_ESP32S2_DEV || ARDUINO_FEATHERS2 || ARDUINO_PROS2 || ARDUINO_MICROS2 )
25082513
#define WIFI_MULTI_1ST_CONNECT_WAITING_MS 500L
25092514
#else
2510-
#define WIFI_MULTI_1ST_CONNECT_WAITING_MS 0L
2515+
// For ESP32 core v1.0.6, must be >= 500
2516+
#define WIFI_MULTI_1ST_CONNECT_WAITING_MS 800L
25112517
#endif
25122518
#else
25132519
// For ESP8266, this better be 2200 to enable connect the 1st time
@@ -3294,7 +3300,7 @@ This is terminal debug output when running [Async_ConfigOnDRD_FS_MQTT_Ptr_Medium
32943300
32953301
```
32963302
Starting Async_ConfigOnDRD_FS_MQTT_Ptr_Medium using LittleFS on ESP32_DEV
3297-
ESPAsync_WiFiManager v1.6.0
3303+
ESPAsync_WiFiManager v1.6.1
32983304
ESP_DoubleResetDetector v1.1.1
32993305
Config File not found
33003306
Can't read Config File, using default values
@@ -3313,7 +3319,7 @@ Opening Configuration Portal. No timeout : DRD or No stored Credentials..
33133319
33143320
```
33153321
Starting Async_ConfigOnDRD_FS_MQTT_Ptr_Medium using LittleFS on ESP32_DEV
3316-
ESPAsync_WiFiManager v1.6.0
3322+
ESPAsync_WiFiManager v1.6.1
33173323
ESP_DoubleResetDetector v1.1.1
33183324
Config File not found
33193325
Can't read Config File, using default values
@@ -3401,7 +3407,7 @@ This is terminal debug output when running [Async_ConfigOnDRD_FS_MQTT_Ptr_Comple
34013407
34023408
```
34033409
Starting Async_ConfigOnDRD_FS_MQTT_Ptr_Complex using LittleFS on ESP8266_NODEMCU
3404-
ESPAsync_WiFiManager v1.6.0
3410+
ESPAsync_WiFiManager v1.6.1
34053411
ESP_DoubleResetDetector Version v1.1.1
34063412
{"AIO_SERVER_Label":"io.adafruit.com","AIO_SERVERPORT_Label":"1883","AIO_USERNAME_Label":"user_name","AIO_KEY_Label":"aio_key"}
34073413
Config File successfully parsed
@@ -3441,7 +3447,7 @@ TWWWW WTWWW
34413447
34423448
```
34433449
Starting Async_ConfigOnDRD_FS_MQTT_Ptr_Complex using LittleFS on ESP8266_NODEMCU
3444-
ESPAsync_WiFiManager v1.6.0
3450+
ESPAsync_WiFiManager v1.6.1
34453451
ESP_DoubleResetDetector Version v1.1.1
34463452
{"AIO_SERVER_Label":"io.adafruit.com","AIO_SERVERPORT_Label":"1883","AIO_USERNAME_Label":"user_name","AIO_KEY_Label":"aio_key"}
34473453
Config File successfully parsed
@@ -3531,7 +3537,7 @@ This is terminal debug output when running [Async_ConfigOnDoubleReset](examples/
35313537
35323538
```cpp
35333539
Starting Async_ConfigOnDoubleReset with DoubleResetDetect using SPIFFS on ESP32_DEV
3534-
ESPAsync_WiFiManager v1.6.0
3540+
ESPAsync_WiFiManager v1.6.1
35353541
ESP_DoubleResetDetector v1.1.1
35363542
[WM] RFC925 Hostname = ConfigOnDoubleReset
35373543
[WM] setSTAStaticIPConfig for USE_CONFIGURABLE_DNS
@@ -3590,7 +3596,7 @@ This is terminal debug output when running [Async_ConfigOnDoubleReset](examples/
35903596

35913597
```cpp
35923598
Starting Async_ConfigOnDoubleReset with DoubleResetDetect using LittleFS on ESP8266_NODEMCU
3593-
ESPAsync_WiFiManager v1.6.0
3599+
ESPAsync_WiFiManager v1.6.1
35943600
ESP_DoubleResetDetector v1.1.1
35953601
[WM] RFC925 Hostname = ConfigOnDoubleReset
35963602
[WM] setSTAStaticIPConfig for USE_CONFIGURABLE_DNS
@@ -3650,7 +3656,7 @@ This is terminal debug output when running [Async_ESP_FSWebServer_DRD](examples/
36503656
36513657
```cpp
36523658
Starting Async_ESP_FSWebServer_DRD using LittleFS on ESP8266_NODEMCU
3653-
ESPAsync_WiFiManager v1.6.0
3659+
ESPAsync_WiFiManager v1.6.1
36543660
ESP_DoubleResetDetector v1.1.1
36553661
Opening / directory
36563662
FS File: CanadaFlag_1.png, size: 40.25KB
@@ -3728,7 +3734,7 @@ This is terminal debug output when running [Async_ESP32_FSWebServer_DRD](example
37283734

37293735
```
37303736
Starting Async_ESP32_FSWebServer_DRD using LittleFS on ESP32_DEV
3731-
ESPAsync_WiFiManager v1.6.0
3737+
ESPAsync_WiFiManager v1.6.1
37323738
ESP_DoubleResetDetector v1.1.1
37333739
FS File: /CanadaFlag_1.png, size: 40.25KB
37343740
FS File: /CanadaFlag_2.png, size: 8.12KB
@@ -3868,6 +3874,10 @@ Submit issues to: [ESPAsync_WiFiManager issues](https://github.com/khoih-prog/ES
38683874

38693875
## Releases
38703876

3877+
### Releases v1.6.1
3878+
3879+
1. Modify multiWiFi-related timings to work better with latest esp32 core v1.0.6
3880+
38713881
### Releases v1.6.0
38723882

38733883
1. Fix WiFi Scanning bug.

examples/Async_AutoConnect/Async_AutoConnect.ino

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
1414
Built by Khoi Hoang https://github.com/khoih-prog/ESPAsync_WiFiManager
1515
Licensed under MIT license
16-
Version: 1.6.0
16+
Version: 1.6.1
1717
1818
Version Modified By Date Comments
1919
------- ----------- ---------- -----------
@@ -30,12 +30,13 @@
3030
1.4.3 K Hoang 23/12/2020 Fix examples' bug not saving Static IP in certain cases.
3131
1.5.0 K Hoang 13/02/2021 Add support to new ESP32-S2. Optimize code.
3232
1.6.0 K Hoang 25/02/2021 Fix WiFi Scanning bug.
33+
1.6.1 K Hoang 26/03/2021 Modify multiWiFi-related timings to work better with latest esp32 core v1.0.6
3334
*****************************************************************************************************************************/
3435
#if !( defined(ESP8266) || defined(ESP32) )
3536
#error This code is intended to run on the ESP8266 or ESP32 platform! Please check your Tools->Board setting.
3637
#endif
3738

38-
#define ESP_ASYNC_WIFIMANAGER_VERSION_MIN_TARGET "ESPAsync_WiFiManager v1.6.0"
39+
#define ESP_ASYNC_WIFIMANAGER_VERSION_MIN_TARGET "ESPAsync_WiFiManager v1.6.1"
3940

4041
// Use from 0 to 4. Higher number, more debugging messages and memory usage.
4142
#define _ESPASYNC_WIFIMGR_LOGLEVEL_ 3
@@ -300,7 +301,8 @@ uint8_t connectMultiWiFi()
300301
#if ( ARDUINO_ESP32S2_DEV || ARDUINO_FEATHERS2 || ARDUINO_PROS2 || ARDUINO_MICROS2 )
301302
#define WIFI_MULTI_1ST_CONNECT_WAITING_MS 500L
302303
#else
303-
#define WIFI_MULTI_1ST_CONNECT_WAITING_MS 0L
304+
// For ESP32 core v1.0.6, must be >= 500
305+
#define WIFI_MULTI_1ST_CONNECT_WAITING_MS 800L
304306
#endif
305307
#else
306308
// For ESP8266, this better be 2200 to enable connect the 1st time

examples/Async_AutoConnectWithFSParameters/Async_AutoConnectWithFSParameters.ino

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
1414
Built by Khoi Hoang https://github.com/khoih-prog/ESPAsync_WiFiManager
1515
Licensed under MIT license
16-
Version: 1.6.0
16+
Version: 1.6.1
1717
1818
Version Modified By Date Comments
1919
------- ----------- ---------- -----------
@@ -30,13 +30,14 @@
3030
1.4.3 K Hoang 23/12/2020 Fix examples' bug not saving Static IP in certain cases.
3131
1.5.0 K Hoang 13/02/2021 Add support to new ESP32-S2. Optimize code.
3232
1.6.0 K Hoang 25/02/2021 Fix WiFi Scanning bug.
33+
1.6.1 K Hoang 26/03/2021 Modify multiWiFi-related timings to work better with latest esp32 core v1.0.6
3334
*****************************************************************************************************************************/
3435

3536
#if !( defined(ESP8266) || defined(ESP32) )
3637
#error This code is intended to run on the ESP8266 or ESP32 platform! Please check your Tools->Board setting.
3738
#endif
3839

39-
#define ESP_ASYNC_WIFIMANAGER_VERSION_MIN_TARGET "ESPAsync_WiFiManager v1.6.0"
40+
#define ESP_ASYNC_WIFIMANAGER_VERSION_MIN_TARGET "ESPAsync_WiFiManager v1.6.1"
4041

4142
// Use from 0 to 4. Higher number, more debugging messages and memory usage.
4243
#define _ESPASYNC_WIFIMGR_LOGLEVEL_ 3
@@ -330,7 +331,8 @@ uint8_t connectMultiWiFi()
330331
#if ( ARDUINO_ESP32S2_DEV || ARDUINO_FEATHERS2 || ARDUINO_PROS2 || ARDUINO_MICROS2 )
331332
#define WIFI_MULTI_1ST_CONNECT_WAITING_MS 500L
332333
#else
333-
#define WIFI_MULTI_1ST_CONNECT_WAITING_MS 0L
334+
// For ESP32 core v1.0.6, must be >= 500
335+
#define WIFI_MULTI_1ST_CONNECT_WAITING_MS 800L
334336
#endif
335337
#else
336338
// For ESP8266, this better be 2200 to enable connect the 1st time

examples/Async_AutoConnectWithFSParametersAndCustomIP/Async_AutoConnectWithFSParametersAndCustomIP.ino

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
1414
Built by Khoi Hoang https://github.com/khoih-prog/ESPAsync_WiFiManager
1515
Licensed under MIT license
16-
Version: 1.6.0
16+
Version: 1.6.1
1717
1818
Version Modified By Date Comments
1919
------- ----------- ---------- -----------
@@ -30,13 +30,14 @@
3030
1.4.3 K Hoang 23/12/2020 Fix examples' bug not saving Static IP in certain cases.
3131
1.5.0 K Hoang 13/02/2021 Add support to new ESP32-S2. Optimize code.
3232
1.6.0 K Hoang 25/02/2021 Fix WiFi Scanning bug.
33+
1.6.1 K Hoang 26/03/2021 Modify multiWiFi-related timings to work better with latest esp32 core v1.0.6
3334
*****************************************************************************************************************************/
3435

3536
#if !( defined(ESP8266) || defined(ESP32) )
3637
#error This code is intended to run on the ESP8266 or ESP32 platform! Please check your Tools->Board setting.
3738
#endif
3839

39-
#define ESP_ASYNC_WIFIMANAGER_VERSION_MIN_TARGET "ESPAsync_WiFiManager v1.6.0"
40+
#define ESP_ASYNC_WIFIMANAGER_VERSION_MIN_TARGET "ESPAsync_WiFiManager v1.6.1"
4041

4142
// Use from 0 to 4. Higher number, more debugging messages and memory usage.
4243
#define _ESPASYNC_WIFIMGR_LOGLEVEL_ 3
@@ -326,7 +327,8 @@ uint8_t connectMultiWiFi()
326327
#if ( ARDUINO_ESP32S2_DEV || ARDUINO_FEATHERS2 || ARDUINO_PROS2 || ARDUINO_MICROS2 )
327328
#define WIFI_MULTI_1ST_CONNECT_WAITING_MS 500L
328329
#else
329-
#define WIFI_MULTI_1ST_CONNECT_WAITING_MS 0L
330+
// For ESP32 core v1.0.6, must be >= 500
331+
#define WIFI_MULTI_1ST_CONNECT_WAITING_MS 800L
330332
#endif
331333
#else
332334
// For ESP8266, this better be 2200 to enable connect the 1st time

examples/Async_AutoConnectWithFeedback/Async_AutoConnectWithFeedback.ino

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
1414
Built by Khoi Hoang https://github.com/khoih-prog/ESPAsync_WiFiManager
1515
Licensed under MIT license
16-
Version: 1.6.0
16+
Version: 1.6.1
1717
1818
Version Modified By Date Comments
1919
------- ----------- ---------- -----------
@@ -30,12 +30,13 @@
3030
1.4.3 K Hoang 23/12/2020 Fix examples' bug not saving Static IP in certain cases.
3131
1.5.0 K Hoang 13/02/2021 Add support to new ESP32-S2. Optimize code.
3232
1.6.0 K Hoang 25/02/2021 Fix WiFi Scanning bug.
33+
1.6.1 K Hoang 26/03/2021 Modify multiWiFi-related timings to work better with latest esp32 core v1.0.6
3334
*****************************************************************************************************************************/
3435
#if !( defined(ESP8266) || defined(ESP32) )
3536
#error This code is intended to run on the ESP8266 or ESP32 platform! Please check your Tools->Board setting.
3637
#endif
3738

38-
#define ESP_ASYNC_WIFIMANAGER_VERSION_MIN_TARGET "ESPAsync_WiFiManager v1.6.0"
39+
#define ESP_ASYNC_WIFIMANAGER_VERSION_MIN_TARGET "ESPAsync_WiFiManager v1.6.1"
3940

4041
// Use from 0 to 4. Higher number, more debugging messages and memory usage.
4142
#define _ESPASYNC_WIFIMGR_LOGLEVEL_ 3
@@ -307,7 +308,8 @@ uint8_t connectMultiWiFi()
307308
#if ( ARDUINO_ESP32S2_DEV || ARDUINO_FEATHERS2 || ARDUINO_PROS2 || ARDUINO_MICROS2 )
308309
#define WIFI_MULTI_1ST_CONNECT_WAITING_MS 500L
309310
#else
310-
#define WIFI_MULTI_1ST_CONNECT_WAITING_MS 0L
311+
// For ESP32 core v1.0.6, must be >= 500
312+
#define WIFI_MULTI_1ST_CONNECT_WAITING_MS 800L
311313
#endif
312314
#else
313315
// For ESP8266, this better be 2200 to enable connect the 1st time

examples/Async_AutoConnectWithFeedbackLED/Async_AutoConnectWithFeedbackLED.ino

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
1414
Built by Khoi Hoang https://github.com/khoih-prog/ESPAsync_WiFiManager
1515
Licensed under MIT license
16-
Version: 1.6.0
16+
Version: 1.6.1
1717
1818
Version Modified By Date Comments
1919
------- ----------- ---------- -----------
@@ -30,13 +30,14 @@
3030
1.4.3 K Hoang 23/12/2020 Fix examples' bug not saving Static IP in certain cases.
3131
1.5.0 K Hoang 13/02/2021 Add support to new ESP32-S2. Optimize code.
3232
1.6.0 K Hoang 25/02/2021 Fix WiFi Scanning bug.
33+
1.6.1 K Hoang 26/03/2021 Modify multiWiFi-related timings to work better with latest esp32 core v1.0.6
3334
*****************************************************************************************************************************/
3435

3536
#if !( defined(ESP8266) || defined(ESP32) )
3637
#error This code is intended to run on the ESP8266 or ESP32 platform! Please check your Tools->Board setting.
3738
#endif
3839

39-
#define ESP_ASYNC_WIFIMANAGER_VERSION_MIN_TARGET "ESPAsync_WiFiManager v1.6.0"
40+
#define ESP_ASYNC_WIFIMANAGER_VERSION_MIN_TARGET "ESPAsync_WiFiManager v1.6.1"
4041

4142
// Use from 0 to 4. Higher number, more debugging messages and memory usage.
4243
#define _ESPASYNC_WIFIMGR_LOGLEVEL_ 3
@@ -312,7 +313,8 @@ uint8_t connectMultiWiFi()
312313
#if ( ARDUINO_ESP32S2_DEV || ARDUINO_FEATHERS2 || ARDUINO_PROS2 || ARDUINO_MICROS2 )
313314
#define WIFI_MULTI_1ST_CONNECT_WAITING_MS 500L
314315
#else
315-
#define WIFI_MULTI_1ST_CONNECT_WAITING_MS 0L
316+
// For ESP32 core v1.0.6, must be >= 500
317+
#define WIFI_MULTI_1ST_CONNECT_WAITING_MS 800L
316318
#endif
317319
#else
318320
// For ESP8266, this better be 2200 to enable connect the 1st time

examples/Async_AutoConnect_ESP32_minimal/Async_AutoConnect_ESP32_minimal.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Licensed under MIT license
66
*****************************************************************************************************************************/
77
#if !(defined(ESP32) )
8-
#error This code is intended to run on the ESP8266 or ESP32 platform! Please check your Tools->Board setting.
8+
#error This code is intended to run on the ESP32 platform! Please check your Tools->Board setting.
99
#elif ( ARDUINO_ESP32S2_DEV || ARDUINO_FEATHERS2 || ARDUINO_PROS2 || ARDUINO_MICROS2 )
1010
#warning You have to select HUGE APP or 1.9-2.0MB APP to be able to run Config Portal
1111
#endif

examples/Async_ConfigOnDRD_ESP32_minimal/Async_ConfigOnDRD_ESP32_minimal.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Licensed under MIT license
66
*****************************************************************************************************************************/
77
#if !(defined(ESP32) )
8-
#error This code is intended to run on the ESP8266 or ESP32 platform! Please check your Tools->Board setting.
8+
#error This code is intended to run on the ESP32 platform! Please check your Tools->Board setting.
99
#elif ( ARDUINO_ESP32S2_DEV || ARDUINO_FEATHERS2 || ARDUINO_PROS2 || ARDUINO_MICROS2 )
1010
#warning You have to select HUGE APP or 1.9-2.0MB APP to be able to run Config Portal
1111
#endif

examples/Async_ConfigOnDRD_ESP8266_minimal/Async_ConfigOnDRD_ESP8266_minimal.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#define USE_LITTLEFS true
99
#define ESP_DRD_USE_LITTLEFS true
1010
#else
11-
#error This code is intended to run on the ESP8266 or ESP32 platform! Please check your Tools->Board setting.
11+
#error This code is intended to run on the ESP8266 platform! Please check your Tools->Board setting.
1212
#endif
1313
#include <ESPAsync_WiFiManager.h> //https://github.com/khoih-prog/ESPAsync_WiFiManager
1414
#define DRD_TIMEOUT 10

0 commit comments

Comments
 (0)