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

Commit 2b2f0e0

Browse files
authored
Releases v1.6.0
### Releases v1.6.0 1. Fix WiFi Scanning bug.
1 parent 3fd62f3 commit 2b2f0e0

File tree

20 files changed

+176
-148
lines changed

20 files changed

+176
-148
lines changed

examples/Async_AutoConnect/Async_AutoConnect.ino

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
1414
Built by Khoi Hoang https://github.com/khoih-prog/ESPAsync_WiFiManager
1515
Licensed under MIT license
16-
Version: 1.5.0
16+
Version: 1.6.0
1717
1818
Version Modified By Date Comments
1919
------- ----------- ---------- -----------
2020
1.0.11 K Hoang 21/08/2020 Initial coding to use (ESP)AsyncWebServer instead of (ESP8266)WebServer. Bump up to v1.0.11
2121
to sync with ESP_WiFiManager v1.0.11
22-
1.1.1 K Hoang 29/08/2020 Add MultiWiFi feature to autoconnect to best WiFi at runtime to sync with
22+
1.1.1 K Hoang 29/08/2020 Add MultiWiFi feature to autoconnect to best WiFi at runtime to sync with
2323
ESP_WiFiManager v1.1.1. Add setCORSHeader function to allow flexible CORS
2424
1.1.2 K Hoang 17/09/2020 Fix bug in examples.
2525
1.2.0 K Hoang 15/10/2020 Restore cpp code besides Impl.h code to use if linker error. Fix bug.
@@ -29,12 +29,13 @@
2929
1.4.2 K Hoang 21/12/2020 Fix examples' bug not using saved WiFi Credentials after losing all WiFi connections.
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.
32+
1.6.0 K Hoang 25/02/2021 Fix WiFi Scanning bug.
3233
*****************************************************************************************************************************/
3334
#if !( defined(ESP8266) || defined(ESP32) )
3435
#error This code is intended to run on the ESP8266 or ESP32 platform! Please check your Tools->Board setting.
3536
#endif
3637

37-
#define ESP_ASYNC_WIFIMANAGER_VERSION_MIN_TARGET "ESPAsync_WiFiManager v1.5.0"
38+
#define ESP_ASYNC_WIFIMANAGER_VERSION_MIN_TARGET "ESPAsync_WiFiManager v1.6.0"
3839

3940
// Use from 0 to 4. Higher number, more debugging messages and memory usage.
4041
#define _ESPASYNC_WIFIMGR_LOGLEVEL_ 3

examples/Async_AutoConnectWithFSParameters/Async_AutoConnectWithFSParameters.ino

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
1414
Built by Khoi Hoang https://github.com/khoih-prog/ESPAsync_WiFiManager
1515
Licensed under MIT license
16-
Version: 1.5.0
16+
Version: 1.6.0
1717
1818
Version Modified By Date Comments
1919
------- ----------- ---------- -----------
2020
1.0.11 K Hoang 21/08/2020 Initial coding to use (ESP)AsyncWebServer instead of (ESP8266)WebServer. Bump up to v1.0.11
2121
to sync with ESP_WiFiManager v1.0.11
22-
1.1.1 K Hoang 29/08/2020 Add MultiWiFi feature to autoconnect to best WiFi at runtime to sync with
22+
1.1.1 K Hoang 29/08/2020 Add MultiWiFi feature to autoconnect to best WiFi at runtime to sync with
2323
ESP_WiFiManager v1.1.1. Add setCORSHeader function to allow flexible CORS
2424
1.1.2 K Hoang 17/09/2020 Fix bug in examples.
2525
1.2.0 K Hoang 15/10/2020 Restore cpp code besides Impl.h code to use if linker error. Fix bug.
@@ -29,13 +29,14 @@
2929
1.4.2 K Hoang 21/12/2020 Fix examples' bug not using saved WiFi Credentials after losing all WiFi connections.
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.
32+
1.6.0 K Hoang 25/02/2021 Fix WiFi Scanning bug.
3233
*****************************************************************************************************************************/
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.5.0"
39+
#define ESP_ASYNC_WIFIMANAGER_VERSION_MIN_TARGET "ESPAsync_WiFiManager v1.6.0"
3940

4041
// Use from 0 to 4. Higher number, more debugging messages and memory usage.
4142
#define _ESPASYNC_WIFIMGR_LOGLEVEL_ 3

examples/Async_AutoConnectWithFSParametersAndCustomIP/Async_AutoConnectWithFSParametersAndCustomIP.ino

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
1414
Built by Khoi Hoang https://github.com/khoih-prog/ESPAsync_WiFiManager
1515
Licensed under MIT license
16-
Version: 1.5.0
16+
Version: 1.6.0
1717
1818
Version Modified By Date Comments
1919
------- ----------- ---------- -----------
2020
1.0.11 K Hoang 21/08/2020 Initial coding to use (ESP)AsyncWebServer instead of (ESP8266)WebServer. Bump up to v1.0.11
2121
to sync with ESP_WiFiManager v1.0.11
22-
1.1.1 K Hoang 29/08/2020 Add MultiWiFi feature to autoconnect to best WiFi at runtime to sync with
22+
1.1.1 K Hoang 29/08/2020 Add MultiWiFi feature to autoconnect to best WiFi at runtime to sync with
2323
ESP_WiFiManager v1.1.1. Add setCORSHeader function to allow flexible CORS
2424
1.1.2 K Hoang 17/09/2020 Fix bug in examples.
2525
1.2.0 K Hoang 15/10/2020 Restore cpp code besides Impl.h code to use if linker error. Fix bug.
@@ -29,13 +29,14 @@
2929
1.4.2 K Hoang 21/12/2020 Fix examples' bug not using saved WiFi Credentials after losing all WiFi connections.
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.
32+
1.6.0 K Hoang 25/02/2021 Fix WiFi Scanning bug.
3233
*****************************************************************************************************************************/
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.5.0"
39+
#define ESP_ASYNC_WIFIMANAGER_VERSION_MIN_TARGET "ESPAsync_WiFiManager v1.6.0"
3940

4041
// Use from 0 to 4. Higher number, more debugging messages and memory usage.
4142
#define _ESPASYNC_WIFIMGR_LOGLEVEL_ 3

examples/Async_AutoConnectWithFeedback/Async_AutoConnectWithFeedback.ino

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
1414
Built by Khoi Hoang https://github.com/khoih-prog/ESPAsync_WiFiManager
1515
Licensed under MIT license
16-
Version: 1.5.0
16+
Version: 1.6.0
1717
1818
Version Modified By Date Comments
1919
------- ----------- ---------- -----------
2020
1.0.11 K Hoang 21/08/2020 Initial coding to use (ESP)AsyncWebServer instead of (ESP8266)WebServer. Bump up to v1.0.11
2121
to sync with ESP_WiFiManager v1.0.11
22-
1.1.1 K Hoang 29/08/2020 Add MultiWiFi feature to autoconnect to best WiFi at runtime to sync with
22+
1.1.1 K Hoang 29/08/2020 Add MultiWiFi feature to autoconnect to best WiFi at runtime to sync with
2323
ESP_WiFiManager v1.1.1. Add setCORSHeader function to allow flexible CORS
2424
1.1.2 K Hoang 17/09/2020 Fix bug in examples.
2525
1.2.0 K Hoang 15/10/2020 Restore cpp code besides Impl.h code to use if linker error. Fix bug.
@@ -29,12 +29,13 @@
2929
1.4.2 K Hoang 21/12/2020 Fix examples' bug not using saved WiFi Credentials after losing all WiFi connections.
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.
32+
1.6.0 K Hoang 25/02/2021 Fix WiFi Scanning bug.
3233
*****************************************************************************************************************************/
3334
#if !( defined(ESP8266) || defined(ESP32) )
3435
#error This code is intended to run on the ESP8266 or ESP32 platform! Please check your Tools->Board setting.
3536
#endif
3637

37-
#define ESP_ASYNC_WIFIMANAGER_VERSION_MIN_TARGET "ESPAsync_WiFiManager v1.5.0"
38+
#define ESP_ASYNC_WIFIMANAGER_VERSION_MIN_TARGET "ESPAsync_WiFiManager v1.6.0"
3839

3940
// Use from 0 to 4. Higher number, more debugging messages and memory usage.
4041
#define _ESPASYNC_WIFIMGR_LOGLEVEL_ 3

examples/Async_AutoConnectWithFeedbackLED/Async_AutoConnectWithFeedbackLED.ino

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
1414
Built by Khoi Hoang https://github.com/khoih-prog/ESPAsync_WiFiManager
1515
Licensed under MIT license
16-
Version: 1.5.0
16+
Version: 1.6.0
1717
1818
Version Modified By Date Comments
1919
------- ----------- ---------- -----------
2020
1.0.11 K Hoang 21/08/2020 Initial coding to use (ESP)AsyncWebServer instead of (ESP8266)WebServer. Bump up to v1.0.11
2121
to sync with ESP_WiFiManager v1.0.11
22-
1.1.1 K Hoang 29/08/2020 Add MultiWiFi feature to autoconnect to best WiFi at runtime to sync with
22+
1.1.1 K Hoang 29/08/2020 Add MultiWiFi feature to autoconnect to best WiFi at runtime to sync with
2323
ESP_WiFiManager v1.1.1. Add setCORSHeader function to allow flexible CORS
2424
1.1.2 K Hoang 17/09/2020 Fix bug in examples.
2525
1.2.0 K Hoang 15/10/2020 Restore cpp code besides Impl.h code to use if linker error. Fix bug.
@@ -29,13 +29,14 @@
2929
1.4.2 K Hoang 21/12/2020 Fix examples' bug not using saved WiFi Credentials after losing all WiFi connections.
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.
32+
1.6.0 K Hoang 25/02/2021 Fix WiFi Scanning bug.
3233
*****************************************************************************************************************************/
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.5.0"
39+
#define ESP_ASYNC_WIFIMANAGER_VERSION_MIN_TARGET "ESPAsync_WiFiManager v1.6.0"
3940

4041
// Use from 0 to 4. Higher number, more debugging messages and memory usage.
4142
#define _ESPASYNC_WIFIMGR_LOGLEVEL_ 3

examples/Async_ConfigOnDRD_FS_MQTT_Ptr/Async_ConfigOnDRD_FS_MQTT_Ptr.ino

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
1414
Built by Khoi Hoang https://github.com/khoih-prog/ESPAsync_WiFiManager
1515
Licensed under MIT license
16-
Version: 1.5.0
16+
Version: 1.6.0
1717
1818
Version Modified By Date Comments
1919
------- ----------- ---------- -----------
2020
1.0.11 K Hoang 21/08/2020 Initial coding to use (ESP)AsyncWebServer instead of (ESP8266)WebServer. Bump up to v1.0.11
2121
to sync with ESP_WiFiManager v1.0.11
22-
1.1.1 K Hoang 29/08/2020 Add MultiWiFi feature to autoconnect to best WiFi at runtime to sync with
22+
1.1.1 K Hoang 29/08/2020 Add MultiWiFi feature to autoconnect to best WiFi at runtime to sync with
2323
ESP_WiFiManager v1.1.1. Add setCORSHeader function to allow flexible CORS
2424
1.1.2 K Hoang 17/09/2020 Fix bug in examples.
2525
1.2.0 K Hoang 15/10/2020 Restore cpp code besides Impl.h code to use if linker error. Fix bug.
@@ -29,6 +29,7 @@
2929
1.4.2 K Hoang 21/12/2020 Fix examples' bug not using saved WiFi Credentials after losing all WiFi connections.
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.
32+
1.6.0 K Hoang 25/02/2021 Fix WiFi Scanning bug.
3233
*****************************************************************************************************************************/
3334
/****************************************************************************************************************************
3435
This example will open a Config Portal when there is no stored WiFi Credentials or when a DRD is detected.
@@ -47,7 +48,7 @@
4748
#error This code is intended to run on the ESP8266 or ESP32 platform! Please check your Tools->Board setting.
4849
#endif
4950

50-
#define ESP_ASYNC_WIFIMANAGER_VERSION_MIN_TARGET "ESPAsync_WiFiManager v1.5.0"
51+
#define ESP_ASYNC_WIFIMANAGER_VERSION_MIN_TARGET "ESPAsync_WiFiManager v1.6.0"
5152

5253
// Use from 0 to 4. Higher number, more debugging messages and memory usage.
5354
#define _ESPASYNC_WIFIMGR_LOGLEVEL_ 3

examples/Async_ConfigOnDRD_FS_MQTT_Ptr_Complex/Async_ConfigOnDRD_FS_MQTT_Ptr_Complex.ino

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
1414
Built by Khoi Hoang https://github.com/khoih-prog/ESPAsync_WiFiManager
1515
Licensed under MIT license
16-
Version: 1.5.0
16+
Version: 1.6.0
1717
1818
Version Modified By Date Comments
1919
------- ----------- ---------- -----------
2020
1.0.11 K Hoang 21/08/2020 Initial coding to use (ESP)AsyncWebServer instead of (ESP8266)WebServer. Bump up to v1.0.11
2121
to sync with ESP_WiFiManager v1.0.11
22-
1.1.1 K Hoang 29/08/2020 Add MultiWiFi feature to autoconnect to best WiFi at runtime to sync with
22+
1.1.1 K Hoang 29/08/2020 Add MultiWiFi feature to autoconnect to best WiFi at runtime to sync with
2323
ESP_WiFiManager v1.1.1. Add setCORSHeader function to allow flexible CORS
2424
1.1.2 K Hoang 17/09/2020 Fix bug in examples.
2525
1.2.0 K Hoang 15/10/2020 Restore cpp code besides Impl.h code to use if linker error. Fix bug.
@@ -29,6 +29,7 @@
2929
1.4.2 K Hoang 21/12/2020 Fix examples' bug not using saved WiFi Credentials after losing all WiFi connections.
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.
32+
1.6.0 K Hoang 25/02/2021 Fix WiFi Scanning bug.
3233
*****************************************************************************************************************************/
3334
/****************************************************************************************************************************
3435
This example will open a Config Portal when there is no stored WiFi Credentials or when a DRD is detected.
@@ -47,7 +48,7 @@
4748
#error This code is intended to run on the ESP8266 or ESP32 platform! Please check your Tools->Board setting.
4849
#endif
4950

50-
#define ESP_ASYNC_WIFIMANAGER_VERSION_MIN_TARGET "ESPAsync_WiFiManager v1.5.0"
51+
#define ESP_ASYNC_WIFIMANAGER_VERSION_MIN_TARGET "ESPAsync_WiFiManager v1.6.0"
5152

5253
// Use from 0 to 4. Higher number, more debugging messages and memory usage.
5354
#define _ESPASYNC_WIFIMGR_LOGLEVEL_ 2

examples/Async_ConfigOnDRD_FS_MQTT_Ptr_Medium/Async_ConfigOnDRD_FS_MQTT_Ptr_Medium.ino

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
1414
Built by Khoi Hoang https://github.com/khoih-prog/ESPAsync_WiFiManager
1515
Licensed under MIT license
16-
Version: 1.5.0
16+
Version: 1.6.0
1717
1818
Version Modified By Date Comments
1919
------- ----------- ---------- -----------
2020
1.0.11 K Hoang 21/08/2020 Initial coding to use (ESP)AsyncWebServer instead of (ESP8266)WebServer. Bump up to v1.0.11
2121
to sync with ESP_WiFiManager v1.0.11
22-
1.1.1 K Hoang 29/08/2020 Add MultiWiFi feature to autoconnect to best WiFi at runtime to sync with
22+
1.1.1 K Hoang 29/08/2020 Add MultiWiFi feature to autoconnect to best WiFi at runtime to sync with
2323
ESP_WiFiManager v1.1.1. Add setCORSHeader function to allow flexible CORS
2424
1.1.2 K Hoang 17/09/2020 Fix bug in examples.
2525
1.2.0 K Hoang 15/10/2020 Restore cpp code besides Impl.h code to use if linker error. Fix bug.
@@ -29,6 +29,7 @@
2929
1.4.2 K Hoang 21/12/2020 Fix examples' bug not using saved WiFi Credentials after losing all WiFi connections.
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.
32+
1.6.0 K Hoang 25/02/2021 Fix WiFi Scanning bug.
3233
*****************************************************************************************************************************/
3334
/****************************************************************************************************************************
3435
This example will open a Config Portal when there is no stored WiFi Credentials or when a DRD is detected.
@@ -47,7 +48,7 @@
4748
#error This code is intended to run on the ESP8266 or ESP32 platform! Please check your Tools->Board setting.
4849
#endif
4950

50-
#define ESP_ASYNC_WIFIMANAGER_VERSION_MIN_TARGET "ESPAsync_WiFiManager v1.5.0"
51+
#define ESP_ASYNC_WIFIMANAGER_VERSION_MIN_TARGET "ESPAsync_WiFiManager v1.6.0"
5152

5253
// Use from 0 to 4. Higher number, more debugging messages and memory usage.
5354
#define _ESPASYNC_WIFIMGR_LOGLEVEL_ 3

0 commit comments

Comments
 (0)