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

Commit 3fb2842

Browse files
authored
v1.7.4 for scanning of hidden SSIDs
### Releases v1.7.4 1. Add WiFi scanning of hidden SSIDs. Check [Add support for Wifi hidden SSID scanning. #66](#66)
1 parent 57c81d2 commit 3fb2842

12 files changed

+53
-30
lines changed

README.md

Lines changed: 30 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
* [Features](#features)
1919
* [Currently supported Boards](#currently-supported-boards)
2020
* [Changelog](#changelog)
21+
* [Releases v1.7.4](#releases-v174)
2122
* [Releases v1.7.3](#releases-v173)
2223
* [Releases v1.7.2](#releases-v172)
2324
* [Releases v1.7.1](#releases-v171)
@@ -259,6 +260,10 @@ It's using a web ConfigPortal, served from the `ESP32 / ESP8266`, and operating
259260

260261
## Changelog
261262

263+
### Releases v1.7.4
264+
265+
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)
266+
262267
### Releases v1.7.3
263268

264269
1. Fix MultiWiFi connection issue with ESP32 core v2.0.0-rc1+
@@ -418,7 +423,7 @@ It's using a web ConfigPortal, served from the `ESP32 / ESP8266`, and operating
418423

419424
## Prerequisites
420425

421-
1. [`Arduino IDE 1.8.13+` for Arduino](https://www.arduino.cc/en/Main/Software)
426+
1. [`Arduino IDE 1.8.15+` for Arduino](https://www.arduino.cc/en/Main/Software)
422427
2. [`ESP8266 Core 3.0.2+`](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/)
423428
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/)
424429
4. [`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.
@@ -2459,7 +2464,7 @@ ESP_wifiManager.setRemoveDuplicateAPs(false);
24592464
#error This code is intended to run on the ESP8266 or ESP32 platform! Please check your Tools->Board setting.
24602465
#endif
24612466

2462-
#define ESP_WIFIMANAGER_VERSION_MIN_TARGET "ESP_WiFiManager v1.7.3"
2467+
#define ESP_WIFIMANAGER_VERSION_MIN_TARGET "ESP_WiFiManager v1.7.4"
24632468

24642469
// Use from 0 to 4. Higher number, more debugging messages and memory usage.
24652470
#define _WIFIMGR_LOGLEVEL_ 3
@@ -3804,7 +3809,7 @@ This is terminal debug output when running [ConfigOnSwitchFS_MQTT_Ptr](examples/
38043809
38053810
```
38063811
Starting ConfigOnSwichFS_MQTT_Ptr using LittleFS on ESP8266_NODEMCU_ESP12E
3807-
ESP_WiFiManager v1.7.3
3812+
ESP_WiFiManager v1.7.4
38083813
Configuration file not found
38093814
Failed to read configuration file, using default values
38103815
[WM] RFC925 Hostname = ConfigOnSwichFS-MQTT
@@ -3916,7 +3921,7 @@ This is terminal debug output when running [ESP32_FSWebServer_DRD](examples/ESP3
39163921
39173922
```cpp
39183923
Starting ESP32_FSWebServer_DRD with DoubleResetDetect using SPIFFS on ESP32_DEV
3919-
ESP_WiFiManager v1.7.3
3924+
ESP_WiFiManager v1.7.4
39203925
ESP_DoubleResetDetector Version v1.1.1
39213926
FS File: /ConfigSW.json, size: 150B
39223927
FS File: /CanadaFlag_1.png, size: 40.25KB
@@ -3981,7 +3986,7 @@ This is terminal debug output when running [ESP32_FSWebServer_DRD](examples/ESP3
39813986

39823987
```
39833988
Starting ESP32_FSWebServer_DRD with DoubleResetDetect using LittleFS on ESP32_DEV
3984-
ESP_WiFiManager v1.7.3
3989+
ESP_WiFiManager v1.7.4
39853990
ESP_DoubleResetDetector Version v1.1.1
39863991
FS File: /CanadaFlag_1.png, size: 40.25KB
39873992
FS File: /CanadaFlag_2.png, size: 8.12KB
@@ -4040,7 +4045,7 @@ This is terminal debug output when running [ConfigOnDRD_FS_MQTT_Ptr_Complex](exa
40404045

40414046
```
40424047
Starting ConfigOnDRD_FS_MQTT_Ptr_Complex using LittleFS on ESP32_DEV
4043-
ESP_WiFiManager v1.7.3
4048+
ESP_WiFiManager v1.7.4
40444049
ESP_DoubleResetDetector Version v1.1.1
40454050
{"AIO_KEY_Label":"aio_key","AIO_SERVER_Label":"io.adafruit.com","AIO_SERVERPORT_Label":"1883","AIO_USERNAME_Label":"user_name"}
40464051
Config File successfully parsed
@@ -4083,7 +4088,7 @@ WWWW WTWWWW WWTWWW WWWTWW WWWWTW WWWWW
40834088

40844089
```
40854090
Starting ConfigOnDRD_FS_MQTT_Ptr_Complex using LittleFS on ESP32_DEV
4086-
ESP_WiFiManager v1.7.3
4091+
ESP_WiFiManager v1.7.4
40874092
ESP_DoubleResetDetector Version v1.1.1
40884093
{"AIO_KEY_Label":"aio_key","AIO_SERVER_Label":"io.adafruit.com","AIO_SERVERPORT_Label":"1883","AIO_USERNAME_Label":"user_name"}
40894094
Config File successfully parsed
@@ -4168,7 +4173,7 @@ This is terminal debug output when running [ConfigOnDRD_FS_MQTT_Ptr_Complex](exa
41684173

41694174
```
41704175
Starting ConfigOnDRD_FS_MQTT_Ptr_Medium using LittleFS on ESP8266_NODEMCU_ESP12E
4171-
ESP_WiFiManager v1.7.3
4176+
ESP_WiFiManager v1.7.4
41724177
ESP_DoubleResetDetector Version v1.1.1
41734178
{"AIO_KEY_Label":"aio_key","AIO_SERVER_Label":"io.adafruit.com","AIO_SERVERPORT_Label":"1883","AIO_USERNAME_Label":"user_name"}
41744179
Config File successfully parsed
@@ -4208,7 +4213,7 @@ TWWWW WTWWWW WWTWWW WWWTWW WWWWTW WWWWW
42084213

42094214
```
42104215
Starting ConfigOnDRD_FS_MQTT_Ptr_Medium using LittleFS on ESP8266_NODEMCU_ESP12E
4211-
ESP_WiFiManager v1.7.3
4216+
ESP_WiFiManager v1.7.4
42124217
ESP_DoubleResetDetector Version v1.1.1
42134218
{"AIO_KEY_Label":"aio_key","AIO_SERVER_Label":"io.adafruit.com","AIO_SERVERPORT_Label":"1883","AIO_USERNAME_Label":"user_name"}
42144219
Config File successfully parsed
@@ -4285,7 +4290,7 @@ This is terminal debug output when running [ConfigOnDoubleReset](examples/Config
42854290

42864291
```
42874292
Starting ConfigOnDoubleReset with DoubleResetDetect using LittleFS on ESP32S2_DEV
4288-
ESP_WiFiManager v1.7.3
4293+
ESP_WiFiManager v1.7.4
42894294
ESP_DoubleResetDetector v1.1.1
42904295
[WM] RFC925 Hostname = ConfigOnDoubleReset
42914296
[WM] setAPStaticIPConfig
@@ -4335,7 +4340,7 @@ This is terminal debug output when running [ConfigOnDoubleReset](examples/Config
43354340

43364341
```
43374342
Starting ConfigOnDoubleReset with DoubleResetDetect using LittleFS on ESP32_DEV
4338-
ESP_WiFiManager v1.7.3
4343+
ESP_WiFiManager v1.7.4
43394344
ESP_DoubleResetDetector v1.1.1
43404345
[WM] RFC925 Hostname = ConfigOnDoubleReset
43414346
[WM] Set CORS Header to : Your Access-Control-Allow-Origin
@@ -4445,7 +4450,7 @@ Local Date/Time: Thu May 6 21:29:18 2021
44454450

44464451
```
44474452
Starting ConfigOnDoubleReset with DoubleResetDetect using LittleFS on ESP32_DEV
4448-
ESP_WiFiManager v1.7.3
4453+
ESP_WiFiManager v1.7.4
44494454
ESP_DoubleResetDetector v1.1.1
44504455
[WM] RFC925 Hostname = ConfigOnDoubleReset
44514456
[WM] Set CORS Header to : Your Access-Control-Allow-Origin
@@ -4496,7 +4501,7 @@ This is terminal debug output when running [ConfigOnDoubleReset](examples/Config
44964501

44974502
```
44984503
Starting ConfigOnDoubleReset with DoubleResetDetect using LittleFS on ESP32S2_DEV
4499-
ESP_WiFiManager v1.7.3
4504+
ESP_WiFiManager v1.7.4
45004505
ESP_DoubleResetDetector v1.1.1
45014506
[WM] RFC925 Hostname = ConfigOnDoubleReset
45024507
[WM] Set CORS Header to : Your Access-Control-Allow-Origin
@@ -4642,7 +4647,7 @@ Local Date/Time: Thu May 6 21:29:18 2021
46424647

46434648
```
46444649
Starting ConfigOnDoubleReset with DoubleResetDetect using LittleFS on ESP32S2_DEV
4645-
ESP_WiFiManager v1.7.3
4650+
ESP_WiFiManager v1.7.4
46464651
ESP_DoubleResetDetector v1.1.1
46474652
[WM] RFC925 Hostname = ConfigOnDoubleReset
46484653
[WM] Set CORS Header to : Your Access-Control-Allow-Origin
@@ -4695,7 +4700,7 @@ This is terminal debug output when running [ESP32_FSWebServer_DRD](examples/ESP3
46954700

46964701
```
46974702
Starting ESP32_FSWebServer_DRD with DoubleResetDetect using SPIFFS on ESP32C3_DEV
4698-
ESP_WiFiManager v1.7.3
4703+
ESP_WiFiManager v1.7.4
46994704
ESP_DoubleResetDetector v1.1.1
47004705
FS File: wm_cp.dat, size: 4B
47014706
FS File: wm_cp.bak, size: 4B
@@ -4798,6 +4803,10 @@ Submit issues to: [ESP_WiFiManager issues](https://github.com/khoih-prog/ESP_WiF
47984803

47994804
## Releases
48004805

4806+
### Releases v1.7.4
4807+
4808+
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)
4809+
48014810
### Releases v1.7.3
48024811

48034812
1. Fix MultiWiFi connection issue with ESP32 core v2.0.0-rc1+
@@ -5005,6 +5014,8 @@ See [KenTaylor's version](https://github.com/kentaylor/WiFiManager) for previous
50055014
13. 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.6.1
50065015
14. 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.7.0
50075016
15. Thanks to [energise](https://github.com/energise) to report the issue in [Invalid Json generated #60](https://github.com/khoih-prog/ESP_WiFiManager/issues/60) leading to new v1.7.1
5017+
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
5018+
50085019

50095020
<table>
50105021
<tr>
@@ -5029,7 +5040,10 @@ See [KenTaylor's version](https://github.com/kentaylor/WiFiManager) for previous
50295040
<td align="center"><a href="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/yiancar"><img src="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/yiancar.png" width="100px;" alt="yiancar"/><br /><sub><b>yiancar</b></sub></a><br /></td>
50305041
<td align="center"><a href="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/increpare"><img src="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/increpare.png" width="100px;" alt="increpare"/><br /><sub><b>Stephen Lavelle</b></sub></a><br /></td>
50315042
<td align="center"><a href="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/benpeart"><img src="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/benpeart.png" width="100px;" alt="benpeart"/><br /><sub><b>Ben Peart</b></sub></a><br /></td>
5032-
<td align="center"><a href="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/energise"><img src="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/energise.png" width="100px;" alt="energise"/><br /><sub><b>energise</b></sub></a><br /></td>
5043+
<td align="center"><a href="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/energise"><img src="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/energise.png" width="100px;" alt="energise"/><br /><sub><b>energise</b></sub></a><br /></td>
5044+
</tr>
5045+
<tr>
5046+
<td align="center"><a href="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/eth0up"><img src="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/eth0up.png" width="100px;" alt="eth0up"/><br /><sub><b>eth0up</b></sub></a><br /></td>
50335047
</tr>
50345048
</table>
50355049

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ESP_WifiManager",
3-
"version": "1.7.3",
3+
"version": "1.7.4",
44
"keywords": "wifi, wi-fi, MultiWiFi, multi-wifi, WiFiManager, esp8266, esp32, esp32-s2, esp32-c3, Communication, iot, credentials, persistent, config-portal, DoubleReset, MultiReset, DoubleResetDetector, littlefs, spiffs, eeprom, dns-server",
55
"description": "Library to configure MultiWiFi/Credentials at runtime for ESP32 (including ESP32-S2 and ESP32-C3) and ESP8266 boards. With enhanced GUI and fallback web ConfigPortal. This Library is used for configuring ESP32 (including ESP32-S2 and ESP32-C3) and ESP8266 MultiWiFi Credentials at runtime. You can also specify static DNS servers, personalized HostName, DHCP HostName, static AP and STA IP, 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=ESP_WiFiManager
2-
version=1.7.3
2+
version=1.7.4
33
author=Khoi Hoang
44
maintainer=Khoi Hoang <[email protected]>
55
license=MIT

src/ESP_WiFiManager-Impl.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
1616
Built by Khoi Hoang https://github.com/khoih-prog/ESP_WiFiManager
1717
Licensed under MIT license
18-
Version: 1.7.3
18+
Version: 1.7.4
1919
2020
Version Modified By Date Comments
2121
------- ----------- ---------- -----------
@@ -50,6 +50,7 @@
5050
1.7.1 K Hoang 08/05/2021 Fix Json bug. Fix timezoneName not displayed in Info page.
5151
1.7.2 K Hoang 08/05/2021 Fix warnings with ESP8266 core v3.0.0
5252
1.7.3 K Hoang 29/07/2021 Fix MultiWiFi connection issue with ESP32 core v2.0.0-rc1+
53+
1.7.4 K Hoang 13/08/2021 Add WiFi scanning of hidden SSIDs
5354
*****************************************************************************************************************************/
5455

5556
#pragma once

src/ESP_WiFiManager.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
1616
Built by Khoi Hoang https://github.com/khoih-prog/ESP_WiFiManager
1717
Licensed under MIT license
18-
Version: 1.7.3
18+
Version: 1.7.4
1919
2020
Version Modified By Date Comments
2121
------- ----------- ---------- -----------
@@ -50,6 +50,7 @@
5050
1.7.1 K Hoang 08/05/2021 Fix Json bug. Fix timezoneName not displayed in Info page.
5151
1.7.2 K Hoang 08/05/2021 Fix warnings with ESP8266 core v3.0.0
5252
1.7.3 K Hoang 29/07/2021 Fix MultiWiFi connection issue with ESP32 core v2.0.0-rc1+
53+
1.7.4 K Hoang 13/08/2021 Add WiFi scanning of hidden SSIDs
5354
*****************************************************************************************************************************/
5455

5556
#pragma once
@@ -71,7 +72,7 @@
7172
#define USING_ESP32_C3 true
7273
#endif
7374

74-
#define ESP_WIFIMANAGER_VERSION "ESP_WiFiManager v1.7.3"
75+
#define ESP_WIFIMANAGER_VERSION "ESP_WiFiManager v1.7.4"
7576

7677
#include "ESP_WiFiManager_Debug.h"
7778

src/ESP_WiFiManager_Debug.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
1616
Built by Khoi Hoang https://github.com/khoih-prog/ESP_WiFiManager
1717
Licensed under MIT license
18-
Version: 1.7.3
18+
Version: 1.7.4
1919
2020
Version Modified By Date Comments
2121
------- ----------- ---------- -----------
@@ -50,6 +50,7 @@
5050
1.7.1 K Hoang 08/05/2021 Fix Json bug. Fix timezoneName not displayed in Info page.
5151
1.7.2 K Hoang 08/05/2021 Fix warnings with ESP8266 core v3.0.0
5252
1.7.3 K Hoang 29/07/2021 Fix MultiWiFi connection issue with ESP32 core v2.0.0-rc1+
53+
1.7.4 K Hoang 13/08/2021 Add WiFi scanning of hidden SSIDs
5354
*****************************************************************************************************************************/
5455

5556
#pragma once

src_cpp/ESP_WiFiManager.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
1616
Built by Khoi Hoang https://github.com/khoih-prog/ESP_WiFiManager
1717
Licensed under MIT license
18-
Version: 1.7.3
18+
Version: 1.7.4
1919
2020
Version Modified By Date Comments
2121
------- ----------- ---------- -----------
@@ -50,6 +50,7 @@
5050
1.7.1 K Hoang 08/05/2021 Fix Json bug. Fix timezoneName not displayed in Info page.
5151
1.7.2 K Hoang 08/05/2021 Fix warnings with ESP8266 core v3.0.0
5252
1.7.3 K Hoang 29/07/2021 Fix MultiWiFi connection issue with ESP32 core v2.0.0-rc1+
53+
1.7.4 K Hoang 13/08/2021 Add WiFi scanning of hidden SSIDs
5354
*****************************************************************************************************************************/
5455

5556
#include "ESP_WiFiManager.h"

src_cpp/ESP_WiFiManager.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
1616
Built by Khoi Hoang https://github.com/khoih-prog/ESP_WiFiManager
1717
Licensed under MIT license
18-
Version: 1.7.3
18+
Version: 1.7.4
1919
2020
Version Modified By Date Comments
2121
------- ----------- ---------- -----------
@@ -50,6 +50,7 @@
5050
1.7.1 K Hoang 08/05/2021 Fix Json bug. Fix timezoneName not displayed in Info page.
5151
1.7.2 K Hoang 08/05/2021 Fix warnings with ESP8266 core v3.0.0
5252
1.7.3 K Hoang 29/07/2021 Fix MultiWiFi connection issue with ESP32 core v2.0.0-rc1+
53+
1.7.4 K Hoang 13/08/2021 Add WiFi scanning of hidden SSIDs
5354
*****************************************************************************************************************************/
5455

5556
#pragma once
@@ -71,7 +72,7 @@
7172
#define USING_ESP32_C3 true
7273
#endif
7374

74-
#define ESP_WIFIMANAGER_VERSION "ESP_WiFiManager v1.7.3"
75+
#define ESP_WIFIMANAGER_VERSION "ESP_WiFiManager v1.7.4"
7576

7677
#include "ESP_WiFiManager_Debug.h"
7778

src_cpp/ESP_WiFiManager_Debug.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
1616
Built by Khoi Hoang https://github.com/khoih-prog/ESP_WiFiManager
1717
Licensed under MIT license
18-
Version: 1.7.3
18+
Version: 1.7.4
1919
2020
Version Modified By Date Comments
2121
------- ----------- ---------- -----------
@@ -50,6 +50,7 @@
5050
1.7.1 K Hoang 08/05/2021 Fix Json bug. Fix timezoneName not displayed in Info page.
5151
1.7.2 K Hoang 08/05/2021 Fix warnings with ESP8266 core v3.0.0
5252
1.7.3 K Hoang 29/07/2021 Fix MultiWiFi connection issue with ESP32 core v2.0.0-rc1+
53+
1.7.4 K Hoang 13/08/2021 Add WiFi scanning of hidden SSIDs
5354
*****************************************************************************************************************************/
5455

5556
#pragma once

src_h/ESP_WiFiManager-Impl.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
1616
Built by Khoi Hoang https://github.com/khoih-prog/ESP_WiFiManager
1717
Licensed under MIT license
18-
Version: 1.7.3
18+
Version: 1.7.4
1919
2020
Version Modified By Date Comments
2121
------- ----------- ---------- -----------
@@ -50,6 +50,7 @@
5050
1.7.1 K Hoang 08/05/2021 Fix Json bug. Fix timezoneName not displayed in Info page.
5151
1.7.2 K Hoang 08/05/2021 Fix warnings with ESP8266 core v3.0.0
5252
1.7.3 K Hoang 29/07/2021 Fix MultiWiFi connection issue with ESP32 core v2.0.0-rc1+
53+
1.7.4 K Hoang 13/08/2021 Add WiFi scanning of hidden SSIDs
5354
*****************************************************************************************************************************/
5455

5556
#pragma once

0 commit comments

Comments
 (0)