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

Commit e055a49

Browse files
authored
v1.9.3 for scanning of hidden SSIDs
### Releases v1.9.3 1. Add WiFi scanning of hidden SSIDs. Check [Add support for Wifi hidden SSID scanning. #66](khoih-prog/ESP_WiFiManager#66)
1 parent 96f9423 commit e055a49

13 files changed

+56
-33
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Please ensure to specify the following:
2929
Arduino IDE version: 1.8.15
3030
ESP8266 Core Version 3.0.2
3131
OS: Ubuntu 20.04 LTS
32-
Linux xy-Inspiron-3593 5.4.0-80-generic #90-Ubuntu SMP Fri Jul 9 22:49:44 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
32+
Linux xy-Inspiron-3593 5.4.0-81-generic #91-Ubuntu SMP Thu Jul 15 19:09:17 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: 30 additions & 16 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.9.3](#releases-v193)
1920
* [Releases v1.9.2](#releases-v192)
2021
* [Releases v1.9.1](#releases-v191)
2122
* [Releases v1.9.0](#releases-v190)
@@ -231,6 +232,10 @@ This [**ESPAsync_WiFiManager** library](https://github.com/khoih-prog/ESPAsync_W
231232

232233
## Changelog
233234

235+
### Releases v1.9.3
236+
237+
1. Add WiFi scanning of hidden SSIDs. Check [Add support for Wifi hidden SSID scanning. #66](https://github.com/khoih-prog/ESP_WiFiManager/pull/66)
238+
234239
### Releases v1.9.2
235240

236241
1. Fix MultiWiFi connection issue with ESP32 core v2.0.0-rc1+
@@ -365,7 +370,7 @@ This [**ESPAsync_WiFiManager** library](https://github.com/khoih-prog/ESPAsync_W
365370
3. [`ESP32 Core 1.0.6+`](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/)
366371
4. [`ESP32-S2/C3 Core 1.0.6+`](https://github.com/espressif/arduino-esp32) for ESP32-S2/C3-based boards. Must follow [HOWTO Install esp32 core for ESP32-S2 (Saola, AI-Thinker ESP-12K) and ESP32-C3 boards into Arduino IDE](#howto-install-esp32-core-for-esp32-s2-saola-ai-thinker-esp-12k-and-esp32-c3-boards-into-arduino-ide).
367372
5. [`ESP32-S2/C3 Core 2.0.0-rc1+`](https://github.com/espressif/arduino-esp32) for ESP32-S2/C3-based boards to use experimental ESP32 core v2.0.0-rc1.
368-
6. [`ESPAsyncWebServer v1.2.3+`](https://github.com/me-no-dev/ESPAsyncWebServer) for all ESP32/ESP8266-based boards. You'd better use the [forked ESPAsyncWebServer](https://github.com/khoih-prog/ESPAsyncWebServer) if the PR [Fix compiler error for ESP32-C3 and mbed TLS v2.7.0+ #970](https://github.com/me-no-dev/ESPAsyncWebServer/pull/970) hasn't been merged.
373+
6. [`ESPAsyncWebServer v1.2.3+`](https://github.com/me-no-dev/ESPAsyncWebServer) for all ESP32/ESP8266-based boards. You have to use the latest [forked ESPAsyncWebServer](https://github.com/khoih-prog/ESPAsyncWebServer) if the PR [Fix compiler error for ESP32-C3 and mbed TLS v2.7.0+ #970](https://github.com/me-no-dev/ESPAsyncWebServer/pull/970) hasn't been merged.
369374
7. [`ESPAsyncTCP v1.2.2+`](https://github.com/me-no-dev/ESPAsyncTCP) for ESP8266-based boards.
370375
8. [`AsyncTCP v1.1.1+`](https://github.com/me-no-dev/AsyncTCP) for ESP32-based boards
371376
9. [`ESP_DoubleResetDetector v1.1.1+`](https://github.com/khoih-prog/ESP_DoubleResetDetector) if using DRD feature. To install, check [![arduino-library-badge](https://www.ardu-badge.com/badge/ESP_DoubleResetDetector.svg?)](https://www.ardu-badge.com/ESP_DoubleResetDetector). Use v1.1.0+ if using LittleFS for EP32.
@@ -2411,7 +2416,7 @@ ESPAsync_wifiManager.setRemoveDuplicateAPs(false);
24112416
#error This code is intended to run on the ESP8266 or ESP32 platform! Please check your Tools->Board setting.
24122417
#endif
24132418

2414-
#define ESP_ASYNC_WIFIMANAGER_VERSION_MIN_TARGET "ESPAsync_WiFiManager v1.9.2"
2419+
#define ESP_ASYNC_WIFIMANAGER_VERSION_MIN_TARGET "ESPAsync_WiFiManager v1.9.3"
24152420

24162421
// Use from 0 to 4. Higher number, more debugging messages and memory usage.
24172422
#define _ESPASYNC_WIFIMGR_LOGLEVEL_ 3
@@ -3763,7 +3768,7 @@ This is terminal debug output when running [Async_ConfigOnDRD_FS_MQTT_Ptr_Medium
37633768
37643769
```
37653770
Starting Async_ConfigOnDRD_FS_MQTT_Ptr_Medium using LittleFS on ESP32_DEV
3766-
ESPAsync_WiFiManager v1.9.2
3771+
ESPAsync_WiFiManager v1.9.3
37673772
ESP_DoubleResetDetector v1.1.1
37683773
Config File not found
37693774
Can't read Config File, using default values
@@ -3782,7 +3787,7 @@ Opening Configuration Portal. No timeout : DRD or No stored Credentials..
37823787
37833788
```
37843789
Starting Async_ConfigOnDRD_FS_MQTT_Ptr_Medium using LittleFS on ESP32_DEV
3785-
ESPAsync_WiFiManager v1.9.2
3790+
ESPAsync_WiFiManager v1.9.3
37863791
ESP_DoubleResetDetector v1.1.1
37873792
Config File not found
37883793
Can't read Config File, using default values
@@ -3870,7 +3875,7 @@ This is terminal debug output when running [Async_ConfigOnDRD_FS_MQTT_Ptr_Comple
38703875
38713876
```
38723877
Starting Async_ConfigOnDRD_FS_MQTT_Ptr_Complex using LittleFS on ESP8266_NODEMCU_ESP12E
3873-
ESPAsync_WiFiManager v1.9.2
3878+
ESPAsync_WiFiManager v1.9.3
38743879
ESP_DoubleResetDetector Version v1.1.1
38753880
{"AIO_SERVER_Label":"io.adafruit.com","AIO_SERVERPORT_Label":"1883","AIO_USERNAME_Label":"user_name","AIO_KEY_Label":"aio_key"}
38763881
Config File successfully parsed
@@ -3910,7 +3915,7 @@ TWWWW WTWWW
39103915
39113916
```
39123917
Starting Async_ConfigOnDRD_FS_MQTT_Ptr_Complex using LittleFS on ESP8266_NODEMCU_ESP12E
3913-
ESPAsync_WiFiManager v1.9.2
3918+
ESPAsync_WiFiManager v1.9.3
39143919
ESP_DoubleResetDetector Version v1.1.1
39153920
{"AIO_SERVER_Label":"io.adafruit.com","AIO_SERVERPORT_Label":"1883","AIO_USERNAME_Label":"user_name","AIO_KEY_Label":"aio_key"}
39163921
Config File successfully parsed
@@ -4000,7 +4005,7 @@ This is terminal debug output when running [Async_ConfigOnDoubleReset](examples/
40004005
40014006
```cpp
40024007
Starting Async_ConfigOnDoubleReset with DoubleResetDetect using SPIFFS on ESP32_DEV
4003-
ESPAsync_WiFiManager v1.9.2
4008+
ESPAsync_WiFiManager v1.9.3
40044009
ESP_DoubleResetDetector v1.1.1
40054010
[WM] RFC925 Hostname = ConfigOnDoubleReset
40064011
[WM] setSTAStaticIPConfig for USE_CONFIGURABLE_DNS
@@ -4059,7 +4064,7 @@ This is terminal debug output when running [Async_ConfigOnDoubleReset](examples/
40594064

40604065
```cpp
40614066
Starting Async_ConfigOnDoubleReset with DoubleResetDetect using LittleFS on ESP8266_NODEMCU_ESP12E
4062-
ESPAsync_WiFiManager v1.9.2
4067+
ESPAsync_WiFiManager v1.9.3
40634068
ESP_DoubleResetDetector v1.1.1
40644069
[WM] RFC925 Hostname = ConfigOnDoubleReset
40654070
[WM] setSTAStaticIPConfig for USE_CONFIGURABLE_DNS
@@ -4119,7 +4124,7 @@ This is terminal debug output when running [Async_ESP_FSWebServer_DRD](examples/
41194124
41204125
```cpp
41214126
Starting Async_ESP_FSWebServer_DRD using LittleFS on ESP8266_NODEMCU_ESP12E
4122-
ESPAsync_WiFiManager v1.9.2
4127+
ESPAsync_WiFiManager v1.9.3
41234128
ESP_DoubleResetDetector v1.1.1
41244129
Opening / directory
41254130
FS File: CanadaFlag_1.png, size: 40.25KB
@@ -4197,7 +4202,7 @@ This is terminal debug output when running [Async_ESP32_FSWebServer_DRD](example
41974202

41984203
```
41994204
Starting Async_ESP32_FSWebServer_DRD using LittleFS on ESP32_DEV
4200-
ESPAsync_WiFiManager v1.9.2
4205+
ESPAsync_WiFiManager v1.9.3
42014206
ESP_DoubleResetDetector v1.1.1
42024207
FS File: /CanadaFlag_1.png, size: 40.25KB
42034208
FS File: /CanadaFlag_2.png, size: 8.12KB
@@ -4308,7 +4313,7 @@ This is terminal debug output when running [Async_ConfigOnDoubleReset](examples/
43084313

43094314
```
43104315
Starting Async_ConfigOnDoubleReset using LittleFS on ESP32S2_DEV
4311-
ESPAsync_WiFiManager v1.9.2
4316+
ESPAsync_WiFiManager v1.9.3
43124317
ESP_DoubleResetDetector v1.1.1
43134318
ESP Self-Stored: SSID = HueNet1, Pass = 12345678
43144319
[WM] * Add SSID = HueNet1 , PW = 12345678
@@ -4345,7 +4350,7 @@ This is terminal debug output when running [Async_ConfigOnDoubleReset_TZ](exampl
43454350

43464351
```
43474352
Starting Async_ConfigOnDoubleReset_TZ using LittleFS on ESP32_DEV
4348-
ESPAsync_WiFiManager v1.9.2
4353+
ESPAsync_WiFiManager v1.9.3
43494354
ESP_DoubleResetDetector v1.1.1
43504355
ESP Self-Stored: SSID = HueNet1, Pass = password
43514356
[WM] * Add SSID = HueNet1 , PW = password
@@ -4389,7 +4394,7 @@ Local Date/Time: Sat May 1 00:17:30 2021
43894394

43904395
```
43914396
Starting Async_ConfigOnDoubleReset_TZ using LittleFS on ESP32_DEV
4392-
ESPAsync_WiFiManager v1.9.2
4397+
ESPAsync_WiFiManager v1.9.3
43934398
ESP_DoubleResetDetector v1.1.1
43944399
ESP Self-Stored: SSID = HueNet1, Pass = password
43954400
[WM] * Add SSID = HueNet1 , PW = password
@@ -4436,7 +4441,7 @@ This is terminal debug output when running [Async_ESP_FSWebServer_DRD](examples/
44364441

44374442
```
44384443
Starting Async_ESP_FSWebServer_DRD using LittleFS on ESP8266_NODEMCU_ESP12E
4439-
ESPAsync_WiFiManager v1.9.2
4444+
ESPAsync_WiFiManager v1.9.3
44404445
ESP_DoubleResetDetector v1.1.1
44414446
Opening / directory
44424447
FS File: drd.dat, size: 4B
@@ -4509,7 +4514,7 @@ Local Date/Time: Sat May 1 03:12:54 2021
45094514

45104515
```
45114516
Starting Async_ESP_FSWebServer_DRD using LittleFS on ESP8266_NODEMCU_ESP12E
4512-
ESPAsync_WiFiManager v1.9.2
4517+
ESPAsync_WiFiManager v1.9.3
45134518
ESP_DoubleResetDetector v1.1.1
45144519
Opening / directory
45154520
FS File: drd.dat, size: 4B
@@ -4568,7 +4573,7 @@ This is terminal debug output when running [Async_ConfigOnDoubleReset_TZ](exampl
45684573

45694574
```
45704575
Starting Async_ConfigOnDoubleReset_TZ using SPIFFS on ESP32C3_DEV
4571-
ESPAsync_WiFiManager v1.9.2
4576+
ESPAsync_WiFiManager v1.9.3
45724577
ESP_DoubleResetDetector v1.1.1
45734578
ESP Self-Stored: SSID = HueNet1, Pass = 12345678
45744579
[WM] * Add SSID = HueNet1 , PW = 12345678
@@ -4643,6 +4648,10 @@ Submit issues to: [ESPAsync_WiFiManager issues](https://github.com/khoih-prog/ES
46434648

46444649
## Releases
46454650

4651+
### Releases v1.9.3
4652+
4653+
1. Add WiFi scanning of hidden SSIDs. Check [Add support for Wifi hidden SSID scanning. #66](https://github.com/khoih-prog/ESP_WiFiManager/pull/66)
4654+
46464655
### Releases v1.9.2
46474656

46484657
1. Fix MultiWiFi connection issue with ESP32 core v2.0.0-rc1+
@@ -4798,6 +4807,8 @@ to use the better **asynchronous** [ESPAsyncWebServer](https://github.com/me-no-
47984807
13. Thanks to [mattbradford83](https://github.com/mattbradford83) for identify, impressively locate, fix the bug and issue PR [Allow captive portal to run more than once by closing dnsServer cleanly. #49](https://github.com/khoih-prog/ESPAsync_WiFiManager/pull/49) leading to v1.6.3
47994808
14. Thanks to [yiancar](https://github.com/yiancar) to report the issue and propose a fix in [In AP, DNS server always redirects to 192.168.4.1 no mater what APStaticIP is set to. #58](https://github.com/khoih-prog/ESP_WiFiManager/issues/58) leading to v1.7.1
48004809
15. Thanks to [Stephen Lavelle](https://github.com/increpare) and [Ben Peart](https://github.com/benpeart) for requesting enhancement in [_timezoneName never getting set? #51](https://github.com/khoih-prog/ESP_WiFiManager/issues/51) and [How to retrieve timezone? #51](https://github.com/khoih-prog/ESPAsync_WiFiManager/issues/51) leading to new v1.8.0
4810+
16. Thanks to [eth0up](https://github.com/eth0up) to make the PR [Add support for Wifi hidden SSID scanning. #66](https://github.com/khoih-prog/ESP_WiFiManager/pull/66) leading to v1.7.4
4811+
48014812

48024813
<table>
48034814
<tr>
@@ -4824,6 +4835,9 @@ to use the better **asynchronous** [ESPAsyncWebServer](https://github.com/me-no-
48244835
<td align="center"><a href="https://github.com/increpare"><img src="https://github.com/increpare.png" width="100px;" alt="increpare"/><br /><sub><b>Stephen Lavelle</b></sub></a><br /></td>
48254836
<td align="center"><a href="https://github.com/benpeart"><img src="https://github.com/benpeart.png" width="100px;" alt="benpeart"/><br /><sub><b>Ben Peart</b></sub></a><br /></td>
48264837
</tr>
4838+
<tr>
4839+
<td align="center"><a href="https://github.com/eth0up"><img src="https://github.com/eth0up.png" width="100px;" alt="eth0up"/><br /><sub><b>eth0up</b></sub></a><br /></td>
4840+
</tr>
48274841
</table>
48284842

48294843
---

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ESPAsync_WiFiManager",
3-
"version": "1.9.2",
3+
"version": "1.9.3",
44
"keywords": "wifi, wi-fi, WiFiManager, esp8266, esp32, esp32-s2, esp32-c3, AsyncWebServer, Async-WebServer, Async-WiFiManager, MultiWiFi, Async, Communication, Credentials, Config-Portal, DoubleReset, MultiReset, littlefs, spiffs, eeprom, dns-server, iot",
55
"description": "ESP32 (including ESP32-S2 and ESP32-C3), ESP8266 WiFi Connection Manager using AsyncWebServer, with enhanced GUI and fallback Web ConfigPortal. This Library is used for configuring ESP32 (including ESP32-S2 and ESP32-C3), ESP8266 modules WiFi Credentials at runtime. You can also specify static DNS servers, personalized HostName, fixed or random AP channel. Now with MultiWiFi auto(Re)connect, configurable CORS Header and auto-Timezone features.",
66
"authors":

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=ESPAsync_WiFiManager
2-
version=1.9.2
2+
version=1.9.3
33
author=Khoi Hoang
44
maintainer=Khoi Hoang <[email protected]>
55
license=MIT

src/ESPAsync_WiFiManager-Impl.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
Built by Khoi Hoang https://github.com/khoih-prog/ESPAsync_WiFiManager
1515
Licensed under MIT license
1616
17-
Version: 1.9.2
17+
Version: 1.9.3
1818
1919
Version Modified By Date Comments
2020
------- ----------- ---------- -----------
@@ -41,6 +41,7 @@
4141
1.9.0 K Hoang 08/05/2021 Add WiFi /scan page. Fix timezoneName not displayed in Info page. Clean up.
4242
1.9.1 K Hoang 18/05/2021 Fix warnings with ESP8266 core v3.0.0
4343
1.9.2 K Hoang 02/08/2021 Fix Mbed TLS compile error and MultiWiFi connection issue with ESP32 core v2.0.0-rc1+
44+
1.9.3 K Hoang 13/08/2021 Add WiFi scanning of hidden SSIDs
4445
*****************************************************************************************************************************/
4546

4647
#pragma once
@@ -564,7 +565,7 @@ void ESPAsync_WiFiManager::scan()
564565
if (wifiSSIDscan)
565566
{
566567
LOGDEBUG(F("Start scan"));
567-
wifi_ssid_count_t n = WiFi.scanNetworks();
568+
wifi_ssid_count_t n = WiFi.scanNetworks(false, true);
568569
LOGDEBUG(F("Scan done"));
569570

570571
if (n == WIFI_SCAN_FAILED)

src/ESPAsync_WiFiManager.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
Built by Khoi Hoang https://github.com/khoih-prog/ESPAsync_WiFiManager
1515
Licensed under MIT license
1616
17-
Version: 1.9.2
17+
Version: 1.9.3
1818
1919
Version Modified By Date Comments
2020
------- ----------- ---------- -----------
@@ -41,6 +41,7 @@
4141
1.9.0 K Hoang 08/05/2021 Add WiFi /scan page. Fix timezoneName not displayed in Info page. Clean up.
4242
1.9.1 K Hoang 18/05/2021 Fix warnings with ESP8266 core v3.0.0
4343
1.9.2 K Hoang 02/08/2021 Fix Mbed TLS compile error and MultiWiFi connection issue with ESP32 core v2.0.0-rc1+
44+
1.9.3 K Hoang 13/08/2021 Add WiFi scanning of hidden SSIDs
4445
*****************************************************************************************************************************/
4546

4647
#pragma once
@@ -62,7 +63,7 @@
6263
#define USING_ESP32_C3 true
6364
#endif
6465

65-
#define ESP_ASYNC_WIFIMANAGER_VERSION "ESPAsync_WiFiManager v1.9.2"
66+
#define ESP_ASYNC_WIFIMANAGER_VERSION "ESPAsync_WiFiManager v1.9.3"
6667

6768
#if ESP8266
6869
#if (ARDUINO_ESP8266_GIT_VER == 0xcf6ff4c4)

src/ESPAsync_WiFiManager_Debug.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
Built by Khoi Hoang https://github.com/khoih-prog/ESPAsync_WiFiManager
1515
Licensed under MIT license
1616
17-
Version: 1.9.2
17+
Version: 1.9.3
1818
1919
Version Modified By Date Comments
2020
------- ----------- ---------- -----------
@@ -41,6 +41,7 @@
4141
1.9.0 K Hoang 08/05/2021 Add WiFi /scan page. Fix timezoneName not displayed in Info page. Clean up.
4242
1.9.1 K Hoang 18/05/2021 Fix warnings with ESP8266 core v3.0.0
4343
1.9.2 K Hoang 02/08/2021 Fix Mbed TLS compile error and MultiWiFi connection issue with ESP32 core v2.0.0-rc1+
44+
1.9.3 K Hoang 13/08/2021 Add WiFi scanning of hidden SSIDs
4445
*****************************************************************************************************************************/
4546

4647
#pragma once

src_cpp/ESPAsync_WiFiManager.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
Built by Khoi Hoang https://github.com/khoih-prog/ESPAsync_WiFiManager
1515
Licensed under MIT license
1616
17-
Version: 1.9.2
17+
Version: 1.9.3
1818
1919
Version Modified By Date Comments
2020
------- ----------- ---------- -----------
@@ -41,6 +41,7 @@
4141
1.9.0 K Hoang 08/05/2021 Add WiFi /scan page. Fix timezoneName not displayed in Info page. Clean up.
4242
1.9.1 K Hoang 18/05/2021 Fix warnings with ESP8266 core v3.0.0
4343
1.9.2 K Hoang 02/08/2021 Fix Mbed TLS compile error and MultiWiFi connection issue with ESP32 core v2.0.0-rc1+
44+
1.9.3 K Hoang 13/08/2021 Add WiFi scanning of hidden SSIDs
4445
*****************************************************************************************************************************/
4546

4647
#include "ESPAsync_WiFiManager.h"

src_cpp/ESPAsync_WiFiManager.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
Built by Khoi Hoang https://github.com/khoih-prog/ESPAsync_WiFiManager
1515
Licensed under MIT license
1616
17-
Version: 1.9.2
17+
Version: 1.9.3
1818
1919
Version Modified By Date Comments
2020
------- ----------- ---------- -----------
@@ -41,6 +41,7 @@
4141
1.9.0 K Hoang 08/05/2021 Add WiFi /scan page. Fix timezoneName not displayed in Info page. Clean up.
4242
1.9.1 K Hoang 18/05/2021 Fix warnings with ESP8266 core v3.0.0
4343
1.9.2 K Hoang 02/08/2021 Fix Mbed TLS compile error and MultiWiFi connection issue with ESP32 core v2.0.0-rc1+
44+
1.9.3 K Hoang 13/08/2021 Add WiFi scanning of hidden SSIDs
4445
*****************************************************************************************************************************/
4546

4647
#pragma once
@@ -62,7 +63,7 @@
6263
#define USING_ESP32_C3 true
6364
#endif
6465

65-
#define ESP_ASYNC_WIFIMANAGER_VERSION "ESPAsync_WiFiManager v1.9.2"
66+
#define ESP_ASYNC_WIFIMANAGER_VERSION "ESPAsync_WiFiManager v1.9.3"
6667

6768
#if ESP8266
6869
#if (ARDUINO_ESP8266_GIT_VER == 0xcf6ff4c4)

src_cpp/ESPAsync_WiFiManager_Debug.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
Built by Khoi Hoang https://github.com/khoih-prog/ESPAsync_WiFiManager
1515
Licensed under MIT license
1616
17-
Version: 1.9.2
17+
Version: 1.9.3
1818
1919
Version Modified By Date Comments
2020
------- ----------- ---------- -----------
@@ -41,6 +41,7 @@
4141
1.9.0 K Hoang 08/05/2021 Add WiFi /scan page. Fix timezoneName not displayed in Info page. Clean up.
4242
1.9.1 K Hoang 18/05/2021 Fix warnings with ESP8266 core v3.0.0
4343
1.9.2 K Hoang 02/08/2021 Fix Mbed TLS compile error and MultiWiFi connection issue with ESP32 core v2.0.0-rc1+
44+
1.9.3 K Hoang 13/08/2021 Add WiFi scanning of hidden SSIDs
4445
*****************************************************************************************************************************/
4546

4647
#pragma once

0 commit comments

Comments
 (0)