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.
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)
9
+
5
10
This library is based on, modified, bug-fixed and improved from:
@@ -14,10 +19,11 @@ It's using a web configuration portal, served from the `ESP32 / ESP8266`, and op
14
19
15
20
The configuration portal is captive, so it will present the configuration dialogue regardless of the web address selected, excluding https requests.
16
21
17
-
This works with
18
-
1. The `ESP8266` Arduino platform with a recent stable release [`ESP8266 Core 2.6.3 or newer`](https://github.com/esp8266/Arduino)
19
-
2. The `ESP32` Arduino platform with a recent stable release [`ESP32 Core 1.0.4 or newer`](https://github.com/espressif/arduino-esp32)
20
-
22
+
## Prerequisite
23
+
1.[`Arduino IDE 1.8.12 or later` for Arduino](https://www.arduino.cc/en/Main/Software)
24
+
2.`Arduino AVR core 1.8.2 or later` for Arduino (Use Arduino Board Manager)
25
+
3.[`ESP8266 Core 2.6.3 or newer`](https://github.com/esp8266/Arduino) for ESP8266-based boards.
26
+
4.[`ESP32 Core 1.0.4 or newer`](https://github.com/espressif/arduino-esp32) for ESP32-based boards
21
27
22
28
## How It Works
23
29
@@ -33,16 +39,20 @@ This works with
33
39
34
40
## Quick Start
35
41
42
+
The suggested way to install is to:
43
+
36
44
### Installing
37
45
38
-
The easiest way is to use Arduino Library Manager. Search for ESP_WiFiManager, then select / install the latest version.
46
+
#### Use Arduino Library Manager
47
+
The best and easiest way is to use `Arduino Library Manager`. Search for `ESP_WiFiManager`, then select / install the latest version. You can also use this link [](https://www.ardu-badge.com/ESP_WiFiManager) for more detailed instructions.
39
48
40
-
#### Compatibility
41
-
Github version `1.0.2` currently works with :
42
-
1. release `2.6.3` or newer of the [ESP8266 core for Arduino](https://github.com/esp8266/Arduino)
43
-
2. release `1.0.4` or newer of the [ESP32 core for Arduino](https://github.com/espressif/arduino-esp32)
49
+
#### Manual Install
44
50
45
-
- Checkout [library](https://github.com/khoih-prog/ESP_WiFiManager) to your Arduino libraries folder. Must be [https://github.com/khoih-prog/ESP_WiFiManager](https://github.com/khoih-prog/ESP_WiFiManager) version.
51
+
1. Navigate to [ESP_WiFiManager](https://github.com/khoih-prog/ESP_WiFiManager) page.
52
+
2. Download the latest release `ESP_WiFiManager-master.zip`.
53
+
3. Extract the zip file to `ESP_WiFiManager-master` directory
54
+
4. Copy whole
55
+
-`ESP_WiFiManager-master/src` folder to Arduino libraries' directory such as `~/Arduino/libraries/`.
46
56
47
57
### Using
48
58
- Include in your sketch
@@ -367,7 +377,7 @@ If you connect to the created configuration Access Point but the configuration p
367
377
368
378
### Releases 1.0.2
369
379
370
-
-Forked, modified, bug-fixed and improved from these versions of WiFiManager.
380
+
-Based on, modified, bug-fixed and improved from these versions of WiFiManager.
371
381
372
382
See [Tzapu's version](https://github.com/tzapu/WiFiManager) for previous release information.
373
383
See [KenTaylor's version](https://github.com/kentaylor/WiFiManager) for previous release information.
@@ -378,9 +388,10 @@ See [KenTaylor's version](https://github.com/kentaylor/WiFiManager) for previous
378
388
- Add example ConfigPortalParamsOnSwitch to enable ConfigPortal credentials to be reconfigurable using ConfigPortal.
379
389
380
390
### Contributions and thanks
381
-
1.Forked from [Tzapu](https://github.com/tzapu/WiFiManager) and [KenTaylor's version](https://github.com/kentaylor/WiFiManager)
391
+
1.Based on and modified from [Tzapu](https://github.com/tzapu/WiFiManager) and [KenTaylor's version](https://github.com/kentaylor/WiFiManager)
382
392
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
383
393
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+).
394
+
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.
0 commit comments