You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 4, 2023. It is now read-only.
1. Fix setSTAStaticIPConfig issue. See [Static Station IP doesn't work](https://github.com/khoih-prog/ESP_WiFiManager/issues/17)
12
+
2. Add LittleFS support for ESP8266 core 2.7.1+ in examples to replace deprecated SPIFFS.
13
+
3. Restructure code.
14
+
9
15
### Releases 1.0.7
10
16
11
17
1. Use `just-in-time` scanWiFiNetworks() to reduce connection time necessary for battery-operated DeepSleep application. Thanks to [CrispinP](https://github.com/CrispinP) for identifying, requesting and testing. See [Starting WiFIManger is very slow (2000ms)](https://github.com/khoih-prog/ESP_WiFiManager/issues/6)
@@ -21,6 +27,8 @@
21
27
1. Add function getConfigPortalPW()
22
28
2. Add 4 new complicated examples compatible with ArduinoJson 6.0.0+ :[AutoConnect](examples/AutoConnect), [AutoConnectWithFeedback](examples/AutoConnectWithFeedback), [AutoConnectWithFeedbackLED](examples/AutoConnectWithFeedbackLED) and [AutoConnectWithFSParameters](examples/AutoConnectWithFSParameters)
23
29
30
+
---
31
+
24
32
This library is based on, modified, bug-fixed and improved from:
then connect WebBrower to configurable ConfigPortal IP address, default is 192.168.4.1
60
+
then connect WebBrowser to configurable ConfigPortal IP address, default is 192.168.4.1
52
61
53
62
- Choose one of the access points scanned, enter password, click ***Save***.
54
63
- ESP will restart, then try to connect to the WiFi netwotk using STA-only mode, ***without running the ConfigPortal WebServer and WiFi AP***. See [Accessing manager after connection](https://github.com/khoih-prog/ESP_WiFiManager/issues/15).
@@ -70,6 +79,8 @@ The best and easiest way is to use `Arduino Library Manager`. Search for `ESP_Wi
70
79
4. Copy whole
71
80
-`ESP_WiFiManager-master/src` folder to Arduino libraries' directory such as `~/Arduino/libraries/`.
72
81
82
+
---
83
+
73
84
### Using
74
85
- Include in your sketch
75
86
```cpp
@@ -144,10 +155,13 @@ Also see examples:
144
155
4.[ConfigOnDoubleReset](examples/ConfigOnDoubleReset) (now support ArduinoJson 6.0.0+ as well as 5.13.5-)
145
156
5.[ConfigPortalParamsOnSwitch](examples/ConfigPortalParamsOnSwitch) (now support ArduinoJson 6.0.0+ as well as 5.13.5-)
In `ConfigPortal Mode`, it starts an access point called `ESP_XXXXXX`. Connect to it using the `configurable password` you can define in the code. For example, `your_password` (see examples):
@@ -185,6 +199,8 @@ Enter your credentials, then click ***Save***. The WiFi Credentials will be save
185
199
186
200
If you're already connected to a listed WiFi AP and don't want to change anything, just select ***Exit Portal*** from the `Main` page to reboot the board and connect to the previously-stored AP. The WiFi Credentials are still intact.
187
201
202
+
---
203
+
188
204
## Documentation
189
205
190
206
#### Password protect the configuration Access Point
@@ -361,6 +377,14 @@ Sometimes, the library will only work if you update the `ESP32 / ESP8266` core t
361
377
362
378
If you connect to the created configuration Access Point but the ConfigPortal does not show up, just open a browser and type in the IP of the web portal, by default `192.168.4.1`.
363
379
380
+
---
381
+
382
+
### Releases 1.0.8
383
+
384
+
1. Fix setSTAStaticIPConfig issue. See [Static Station IP doesn't work](https://github.com/khoih-prog/ESP_WiFiManager/issues/17)
385
+
2. Add LittleFS support for ESP8266 core 2.7.1+ in examples to replace deprecated SPIFFS.
386
+
3. Restructure code.
387
+
364
388
### Releases 1.0.7
365
389
366
390
1. Use `just-in-time` scanWiFiNetworks() to reduce connection time necessary for battery-operated DeepSleep application. Thanks to [CrispinP](https://github.com/CrispinP) for identifying, requesting and testing. See [Starting WiFIManger is very slow (2000ms)](https://github.com/khoih-prog/ESP_WiFiManager/issues/6)
@@ -419,11 +443,15 @@ See [KenTaylor's version](https://github.com/kentaylor/WiFiManager) for previous
419
443
- Fix bug that keeps ConfigPortal in endless loop if Portal/Router SSID or Password is NULL.
420
444
- Add example ConfigPortalParamsOnSwitch to enable ConfigPortal credentials to be reconfigurable using ConfigPortal.
421
445
446
+
---
447
+
422
448
### Contributions and thanks
449
+
423
450
1. Based on and modified from [Tzapu](https://github.com/tzapu/WiFiManager) and [KenTaylor's version](https://github.com/kentaylor/WiFiManager)
424
451
2. Thanks to [Amorphous](https://community.blynk.cc/t/esp-wifimanager-for-esp32-and-esp8266/42257/13) for the static DNS feature and code, included in v1.0.5
425
452
3. Thanks to [CrispinP](https://github.com/CrispinP) for idea to add HostName (v1.0.4) and request to reduce the unnecessary waiting time in ESP_WiFiManager constructor (v1.0.6+). See [Starting WiFIManger is very slow (2000ms)](https://github.com/khoih-prog/ESP_WiFiManager/issues/6)
426
453
4. Thanks to [OttoKlaasen](https://github.com/OttoKlaasen) for reporting [Having issue to read the SPIFF file](https://github.com/khoih-prog/ESP_WiFiManager/issues/14) bug in examples.
454
+
5. Thanks to [Giuseppe](https://github.com/Gius-8) for reporting [Static Station IP doesn't work](https://github.com/khoih-prog/ESP_WiFiManager/issues/17) bug.
0 commit comments