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

Commit 03767f3

Browse files
authored
v1.5.0 to enable scan of WiFi networks
### Major Release v1.5.0 1. Enable scan of WiFi networks for selection in Configuration Portal. Check [PR for v1.3.0 - Enable scan of WiFi networks #10](khoih-prog/WiFiManager_NINA_Lite#10). Now you can select optional **SCAN_WIFI_NETWORKS**, **MANUAL_SSID_INPUT_ALLOWED** to be able to manually input SSID, not only from a scanned SSID lists and **MAX_SSID_IN_LIST** (from 2-15) 2. Minor enhancement to not display garbage when data is invalid
1 parent fb7aecf commit 03767f3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ This [**ESPAsync_WiFiManager_Lite** library](https://github.com/khoih-prog/ESPAs
187187

188188
### Major Release v1.5.0
189189

190-
1. Enable scan of WiFi networks for selection in Configuration Portal. Check [PR for v1.3.0 - Enable scan of WiFi networks #10](https://github.com/khoih-prog/WiFiManager_NINA_Lite/pull/10). Now you can select optional **SCAN_WIFI_NETWORKS**, **MANUAL_SSID_INPUT_ALLOWED** to be able to manually input SSID, not only from a scanned SSID lists and **MAX_SSID_IN_LIST** (from 2-6 for ESP8266-AT or 2-15 for other)
190+
1. Enable scan of WiFi networks for selection in Configuration Portal. Check [PR for v1.3.0 - Enable scan of WiFi networks #10](https://github.com/khoih-prog/WiFiManager_NINA_Lite/pull/10). Now you can select optional **SCAN_WIFI_NETWORKS**, **MANUAL_SSID_INPUT_ALLOWED** to be able to manually input SSID, not only from a scanned SSID lists and **MAX_SSID_IN_LIST** (from 2-15)
191191
2. Minor enhancement to not display garbage when data is invalid
192192

193193
### Release v1.4.0
@@ -2205,7 +2205,7 @@ If you connect to the created configuration Access Point but the ConfigPortal do
22052205

22062206
### Major Release v1.5.0
22072207

2208-
1. Enable scan of WiFi networks for selection in Configuration Portal. Check [PR for v1.3.0 - Enable scan of WiFi networks #10](https://github.com/khoih-prog/WiFiManager_NINA_Lite/pull/10). Now you can select optional **SCAN_WIFI_NETWORKS**, **MANUAL_SSID_INPUT_ALLOWED** to be able to manually input SSID, not only from a scanned SSID lists and **MAX_SSID_IN_LIST** (from 2-6 for ESP8266-AT or 2-15 for other)
2208+
1. Enable scan of WiFi networks for selection in Configuration Portal. Check [PR for v1.3.0 - Enable scan of WiFi networks #10](https://github.com/khoih-prog/WiFiManager_NINA_Lite/pull/10). Now you can select optional **SCAN_WIFI_NETWORKS**, **MANUAL_SSID_INPUT_ALLOWED** to be able to manually input SSID, not only from a scanned SSID lists and **MAX_SSID_IN_LIST** (from 2-15)
22092209
2. Minor enhancement to not display garbage when data is invalid
22102210

22112211
### Release v1.4.0

src/ESPAsync_WiFiManager_Lite.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ const char ESP_WM_LITE_HTML_HEAD_END[] /*PROGMEM*/ = "</head><div style='text-
348348
<fieldset><div><label>Board Name</label><input value='[[nm]]' id='nm'><div></div></div></fieldset>"; // DO NOT CHANGE THIS STRING EVER!!!!
349349

350350
const char ESP_WM_LITE_HTML_INPUT_ID[] /*PROGMEM*/ = "<input value='[[id]]' id='id'>";
351-
const char ESP_WM_LITE__HTML_INPUT_ID1[] /*PROGMEM*/ = "<input value='[[id1]]' id='id1'>";
351+
const char ESP_WM_LITE_HTML_INPUT_ID1[] /*PROGMEM*/ = "<input value='[[id1]]' id='id1'>";
352352

353353

354354
const char ESP_WM_LITE_FLDSET_START[] /*PROGMEM*/ = "<fieldset>";

0 commit comments

Comments
 (0)