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

Commit 4e08789

Browse files
authored
v1.0.0 for ESP8266 + LwIP W5100 / W5100S
#### Releases v1.0.0 1. Initial coding to port [ESPAsync_WiFiManager](https://github.com/khoih-prog/ESPAsync_WiFiManager) to ESP8266 boards using `LwIP W5100 / W5100S Ethernet`. 2. Use `allman astyle`
1 parent 28a20f5 commit 4e08789

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

examples/Async_ESP_FSWebServer/README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Async_ESP_FSWebServer Example
22

3-
Compare this efficient Async_ESP_FSWebServer example with the so complicated twin [ESP_FSWebServer_DRD](https://github.com/khoih-prog/ESP_WiFiManager/tree/master/examples/ESP_FSWebServer_DRD) to appreciate the powerful AsynWebServer this [AsyncESP8266_W5500_Manager Library](https://github.com/khoih-prog/AsyncESP8266_W5500_Manager) is relying on.
3+
Compare this efficient Async_ESP_FSWebServer example with the so complicated twin [ESP_FSWebServer_DRD](https://github.com/khoih-prog/ESP_WiFiManager/tree/master/examples/ESP_FSWebServer_DRD) to appreciate the powerful AsynWebServer this [AsyncESP8266_W5100_Manager Library](https://github.com/khoih-prog/AsyncESP8266_W5100_Manager) is relying on.
44

55
## First, how Config Portal works?
66

@@ -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/AsyncESP8266_W5500_Manager/raw/main/Images/Main.png">
13+
<img src="https://github.com/khoih-prog/AsyncESP8266_W5100_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/AsyncESP8266_W5500_Manager/raw/main/Images/Info.png">
19+
<img src="https://github.com/khoih-prog/AsyncESP8266_W5100_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/AsyncESP8266_W5500_Manager/raw/main/Images/Configuration_Standard.png">
26+
<img src="https://github.com/khoih-prog/AsyncESP8266_W5100_Manager/raw/main/Images/Configuration_Standard.png">
2727
</p>
2828

2929
Enter your credentials, then click `Save`.
@@ -36,10 +36,10 @@ This shows you how to use this example in Ubuntu (but you can use similar comman
3636

3737
### Download Data files
3838

39-
1. For example, you already downloaded data files from [Async_ESP_FSWebServer data](https://github.com/khoih-prog/AsyncESP8266_W5500_Manager/tree/main/examples/Async_ESP_FSWebServer/data) to a local folder, for example:
39+
1. For example, you already downloaded data files from [Async_ESP_FSWebServer data](https://github.com/khoih-prog/AsyncESP8266_W5100_Manager/tree/main/examples/Async_ESP_FSWebServer/data) to a local folder, for example:
4040

4141
```
42-
~/Arduino/libraries/AsyncESP8266_W5500_Manager-main/examples/Async_ESP_FSWebServer/data
42+
~/Arduino/libraries/AsyncESP8266_W5100_Manager-main/examples/Async_ESP_FSWebServer/data
4343
```
4444

4545
### HOWTO Upload files to ESP8266 (LittleFS or SPIFFS)
@@ -51,7 +51,7 @@ Use one of these methods (preferable first)
5151
3. or upload the contents of a folder by running the following commands:
5252

5353
```
54-
Ubuntu$ cd ~/Arduino/libraries/AsyncESP8266_W5500_Manager-main/examples/Async_ESP_FSWebServer/data
54+
Ubuntu$ cd ~/Arduino/libraries/AsyncESP8266_W5100_Manager-main/examples/Async_ESP_FSWebServer/data
5555
Ubuntu$ for file in \`\ls -A1\`; do curl -F "file=@$PWD/$file" http://async-esp8266fs.local/edit; done
5656
```
5757

@@ -60,13 +60,13 @@ Ubuntu$ for file in \`\ls -A1\`; do curl -F "file=@$PWD/$file" http://async-esp8
6060
### Demonstrating pictures
6161

6262
<p align="center">
63-
<img src="https://github.com/khoih-prog/AsyncESP8266_W5500_Manager/raw/main/examples/Async_ESP_FSWebServer/pics/async-esp8266fs.local.png">
63+
<img src="https://github.com/khoih-prog/AsyncESP8266_W5100_Manager/raw/main/examples/Async_ESP_FSWebServer/pics/async-esp8266fs.local.png">
6464
</p>
6565

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

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

7272

examples/Async_ESP_FSWebServer_DRD/README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Async_ESP_FSWebServer_DRD Example
22

3-
Compare this efficient Async_ESP_FSWebServer example with the so complicated twin [ESP_FSWebServer_DRD](https://github.com/khoih-prog/ESP_WiFiManager/tree/master/examples/ESP_FSWebServer_DRD) to appreciate the powerful AsynWebServer this [AsyncESP8266_W5500_Manager Library](https://github.com/khoih-prog/AsyncESP8266_W5500_Manager) is relying on.
3+
Compare this efficient Async_ESP_FSWebServer example with the so complicated twin [ESP_FSWebServer_DRD](https://github.com/khoih-prog/ESP_WiFiManager/tree/master/examples/ESP_FSWebServer_DRD) to appreciate the powerful AsynWebServer this [AsyncESP8266_W5100_Manager Library](https://github.com/khoih-prog/AsyncESP8266_W5100_Manager) is relying on.
44

55
## First, how Config Portal works?
66

@@ -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/AsyncESP8266_W5500_Manager/raw/main/Images/Main.png">
13+
<img src="https://github.com/khoih-prog/AsyncESP8266_W5100_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/AsyncESP8266_W5500_Manager/raw/main/Images/Info.png">
19+
<img src="https://github.com/khoih-prog/AsyncESP8266_W5100_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/AsyncESP8266_W5500_Manager/raw/main/Images/Configuration_Standard.png">
26+
<img src="https://github.com/khoih-prog/AsyncESP8266_W5100_Manager/raw/main/Images/Configuration_Standard.png">
2727
</p>
2828

2929
Enter your credentials, then click `Save`.
@@ -36,10 +36,10 @@ This shows you how to use this example in Ubuntu (but you can use similar comman
3636

3737
### Download Data files
3838

39-
1. For example, you already downloaded data files from [Async_ESP_FSWebServer data](https://github.com/khoih-prog/AsyncESP8266_W5500_Manager/tree/main/examples/Async_ESP_FSWebServer/data) to a local folder, for example:
39+
1. For example, you already downloaded data files from [Async_ESP_FSWebServer data](https://github.com/khoih-prog/AsyncESP8266_W5100_Manager/tree/main/examples/Async_ESP_FSWebServer/data) to a local folder, for example:
4040

4141
```
42-
~/Arduino/libraries/AsyncESP8266_W5500_Manager-main/examples/Async_ESP_FSWebServer_DRD/data
42+
~/Arduino/libraries/AsyncESP8266_W5100_Manager-main/examples/Async_ESP_FSWebServer_DRD/data
4343
```
4444

4545
### HOWTO Upload files to ESP8266 (LittleFS or SPIFFS)
@@ -51,7 +51,7 @@ Use one of these methods (preferable first)
5151
3. or upload the contents of a folder by running the following commands:
5252

5353
```
54-
Ubuntu$ cd ~/Arduino/libraries/AsyncESP8266_W5500_Manager-main/examples/Async_ESP_FSWebServer/data
54+
Ubuntu$ cd ~/Arduino/libraries/AsyncESP8266_W5100_Manager-main/examples/Async_ESP_FSWebServer/data
5555
Ubuntu$ for file in \`\ls -A1\`; do curl -F "file=@$PWD/$file" http://async-esp8266fs.local/edit; done
5656
```
5757

@@ -60,13 +60,13 @@ Ubuntu$ for file in \`\ls -A1\`; do curl -F "file=@$PWD/$file" http://async-esp8
6060
### Demonstrating pictures
6161

6262
<p align="center">
63-
<img src="https://github.com/khoih-prog/AsyncESP8266_W5500_Manager/raw/main/examples/Async_ESP_FSWebServer/pics/async-esp8266fs.local.png">
63+
<img src="https://github.com/khoih-prog/AsyncESP8266_W5100_Manager/raw/main/examples/Async_ESP_FSWebServer/pics/async-esp8266fs.local.png">
6464
</p>
6565

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

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

7272

0 commit comments

Comments
 (0)