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

Commit 5ee13be

Browse files
authored
v1.0.0 for ESP8266 + LwIP W5500
#### Releases v1.0.0 1. Initial coding to port [ESPAsync_WiFiManager](https://github.com/khoih-prog/ESPAsync_WiFiManager) to ESP8266 boards using `LwIP W5500 Ethernet`. 2. Use `allman astyle`
1 parent 8f042c1 commit 5ee13be

File tree

3 files changed

+10
-14
lines changed

3 files changed

+10
-14
lines changed

README.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@
2424
* [Use Arduino Library Manager](#use-arduino-library-manager)
2525
* [Manual Install](#manual-install)
2626
* [VS Code & PlatformIO](#vs-code--platformio)
27-
* [Libraries' Patches](#libraries-patches)
28-
* [1. For ESPAsyncWebServer library](#1-for-espasyncwebserver-library)
2927
* [HOWTO Fix `Multiple Definitions` Linker Error](#howto-fix-multiple-definitions-linker-error)
3028
* [How It Works](#how-it-works)
3129
* [HOWTO Basic configurations](#howto-basic-configurations)
@@ -200,8 +198,6 @@ in many files. But be sure to use the following `#include <AsyncESP8266_W5500_Ma
200198
#include <AsyncESP8266_W5500_Manager.h> //https://github.com/khoih-prog/AsyncESP8266_W5500_Manager
201199
```
202200

203-
Check [Async_ConfigOnDoubleReset_Multi](examples/Async_ConfigOnDoubleReset_Multi) for an example how and where to do so.
204-
205201
Have a look at the discussion in [Different behaviour using the src_cpp or src_h lib #80](https://github.com/khoih-prog/AsyncESP8266_W5500_Manager/discussions/80)
206202

207203
---
@@ -321,7 +317,7 @@ then connect `WebBrowser` to configurable ConfigPortal IP address, e.g. `192.168
321317
#include <ESP_DoubleResetDetector.h> //https://github.com/khoih-prog/ESP_DoubleResetDetector
322318

323319
// Number of seconds after reset during which a
324-
// subseqent reset will be considered a double reset.
320+
// subsequent reset will be considered a double reset.
325321
#define DRD_TIMEOUT 10
326322

327323
// RTC Memory Address for the DoubleResetDetector to use
@@ -1459,7 +1455,7 @@ void loop()
14591455
Serial.println(F("\nConfiguration portal requested."));
14601456
digitalWrite(LED_BUILTIN, LED_ON); // turn the LED on by making the voltage LOW to tell us we are in configuration mode.
14611457

1462-
//Local intialization. Once its business is done, there is no need to keep it around
1458+
//Local initialization. Once its business is done, there is no need to keep it around
14631459
// Use this to default DHCP hostname to ESP8266-XXXXXX
14641460
//AsyncESP8266_W5500_Manager AsyncESP8266_W5500_manager(&webServer, &dnsServer);
14651461
// Use this to personalize DHCP hostname (RFC952 conformed)

examples/Async_ESP_FSWebServer/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,20 @@ Connect to Config Portal @ the localIP address, e.g. `192.168.2.186`
1010
You'll see this `Main` page:
1111

1212
<p align="center">
13-
<img src="https://github.com/khoih-prog/AsyncESP32_W5500_Manager/raw/main/Images/Main.png">
13+
<img src="https://github.com/khoih-prog/AsyncESP8266_W5500_Manager/raw/main/Images/Main.png">
1414
</p>
1515

1616
Select `Information` to enter the Info page where the board info will be shown (long page)
1717

1818
<p align="center">
19-
<img src="https://github.com/khoih-prog/AsyncESP32_W5500_Manager/raw/main/Images/Info.png">
19+
<img src="https://github.com/khoih-prog/AsyncESP8266_W5500_Manager/raw/main/Images/Info.png">
2020
</p>
2121

2222

2323
Select `Configuration` to enter this page where you can select an AP and specify its WiFi Credentials
2424

2525
<p align="center">
26-
<img src="https://github.com/khoih-prog/AsyncESP32_W5500_Manager/raw/main/Images/Configuration_Standard.png">
26+
<img src="https://github.com/khoih-prog/AsyncESP8266_W5500_Manager/raw/main/Images/Configuration_Standard.png">
2727
</p>
2828

2929
Enter your credentials, then click `Save`.
@@ -63,7 +63,7 @@ Ubuntu$ for file in \`\ls -A1\`; do curl -F "file=@$PWD/$file" http://async-esp8
6363
<img src="https://github.com/khoih-prog/AsyncESP8266_W5500_Manager/raw/main/examples/Async_ESP_FSWebServer/pics/async-esp8266fs.local.png">
6464
</p>
6565

66-
4. Edit / Delete / Download any file in the the folder by going to http://async-esp8266fs.local/edit
66+
4. Edit / Delete / Download any file in the the folder by going to http://async-esp8266fs.local/edit.htm
6767

6868
<p align="center">
6969
<img src="https://github.com/khoih-prog/AsyncESP8266_W5500_Manager/raw/main/examples/Async_ESP_FSWebServer/pics/async-esp8266fs.local_edit.png">

examples/Async_ESP_FSWebServer_DRD/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,20 @@ Connect to Config Portal @ the localIP address, e.g. `192.168.2.186`
1010
You'll see this `Main` page:
1111

1212
<p align="center">
13-
<img src="https://github.com/khoih-prog/AsyncESP32_W5500_Manager/raw/main/Images/Main.png">
13+
<img src="https://github.com/khoih-prog/AsyncESP8266_W5500_Manager/raw/main/Images/Main.png">
1414
</p>
1515

1616
Select `Information` to enter the Info page where the board info will be shown (long page)
1717

1818
<p align="center">
19-
<img src="https://github.com/khoih-prog/AsyncESP32_W5500_Manager/raw/main/Images/Info.png">
19+
<img src="https://github.com/khoih-prog/AsyncESP8266_W5500_Manager/raw/main/Images/Info.png">
2020
</p>
2121

2222

2323
Select `Configuration` to enter this page where you can select an AP and specify its WiFi Credentials
2424

2525
<p align="center">
26-
<img src="https://github.com/khoih-prog/AsyncESP32_W5500_Manager/raw/main/Images/Configuration_Standard.png">
26+
<img src="https://github.com/khoih-prog/AsyncESP8266_W5500_Manager/raw/main/Images/Configuration_Standard.png">
2727
</p>
2828

2929
Enter your credentials, then click `Save`.
@@ -63,7 +63,7 @@ Ubuntu$ for file in \`\ls -A1\`; do curl -F "file=@$PWD/$file" http://async-esp8
6363
<img src="https://github.com/khoih-prog/AsyncESP8266_W5500_Manager/raw/main/examples/Async_ESP_FSWebServer/pics/async-esp8266fs.local.png">
6464
</p>
6565

66-
4. Edit / Delete / Download any file in the the folder by going to http://async-esp8266fs.local/edit
66+
4. Edit / Delete / Download any file in the the folder by going to http://async-esp8266fs.local/edit.htm
6767

6868
<p align="center">
6969
<img src="https://github.com/khoih-prog/AsyncESP8266_W5500_Manager/raw/main/examples/Async_ESP_FSWebServer/pics/async-esp8266fs.local_edit.png">

0 commit comments

Comments
 (0)