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

Commit b4aa7d9

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

File tree

2 files changed

+22
-18
lines changed

2 files changed

+22
-18
lines changed

examples/Async_ESP32_FSWebServer/README.md

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Async_ESP32_FSWebServer_DRD Example
22

3-
Compare this efficient Async_ESP32_FSWebServer_DRD example with the so complicated twin [ESP32_FSWebServer_DRD](https://github.com/khoih-prog/ESP_WiFiManager/tree/main/examples/ESP32_FSWebServer_DRD) to appreciate the powerful AsynWebServer this [AsyncESP32_W5500_Manager Library](https://github.com/khoih-prog/AsyncESP32_W5500_Manager) is relying on.
3+
Compare this efficient Async_ESP32_FSWebServer_DRD example with the so complicated twin [ESP32_FSWebServer_DRD](https://github.com/khoih-prog/ESP_WiFiManager/tree/main/examples/ESP32_FSWebServer_DRD) to appreciate the powerful AsynWebServer this [AsyncESP32_SC_W5500_Manager Library](https://github.com/khoih-prog/AsyncESP32_SC_W5500_Manager) is relying on.
4+
5+
---
46

57
## First, how Config Portal works?
68

@@ -10,20 +12,20 @@ Connect to Config Portal @ the localIP address, e.g. `192.168.2.232`
1012
You'll see this `Main` page:
1113

1214
<p align="center">
13-
<img src="https://github.com/khoih-prog/AsyncESP32_W5500_Manager/raw/main/Images/Main.png">
15+
<img src="https://github.com/khoih-prog/AsyncESP32_SC_W5500_Manager/raw/main/Images/Main.png">
1416
</p>
1517

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

1820
<p align="center">
19-
<img src="https://github.com/khoih-prog/AsyncESP32_W5500_Manager/raw/main/Images/Info.png">
21+
<img src="https://github.com/khoih-prog/AsyncESP32_SC_W5500_Manager/raw/main/Images/Info.png">
2022
</p>
2123

2224

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

2527
<p align="center">
26-
<img src="https://github.com/khoih-prog/AsyncESP32_W5500_Manager/raw/main/Images/Configuration_Standard.png">
28+
<img src="https://github.com/khoih-prog/AsyncESP32_SC_W5500_Manager/raw/main/Images/Configuration_Standard.png">
2729
</p>
2830

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

3739
### Download Data files
3840

39-
1. For example, you already downloaded data files from [Async_ESP32_FSWebServer_DRD data](https://github.com/khoih-prog/AsyncESP32_W5500_Manager/tree/main/examples/Async_ESP32_FSWebServer_DRD/data) to a local folder, for example:
41+
1. For example, you already downloaded data files from [Async_ESP32_FSWebServer_DRD data](https://github.com/khoih-prog/AsyncESP32_SC_W5500_Manager/tree/main/examples/Async_ESP32_FSWebServer_DRD/data) to a local folder, for example:
4042

4143
```
42-
~/Arduino/libraries/AsyncESP32_W5500_Manager-main/examples/Async_ESP32_FSWebServer_DRD/data
44+
~/Arduino/libraries/AsyncESP32_SC_W5500_Manager-main/examples/Async_ESP32_FSWebServer_DRD/data
4345
```
4446

4547
### HOWTO Upload files to ESP32 (SPIFFS or FFat)
@@ -50,7 +52,7 @@ Use one of these methods (preferable first)
5052
2. or Upload the contents of the data folder with MkSPIFFS Tool ("ESP8266 Sketch Data Upload" in Tools menu in Arduino IDE)
5153
3. or upload the contents of a folder by running the following commands:
5254
```
53-
Ubuntu$ cd ~/Arduino/libraries/AsyncESP32_W5500_Manager-main/examples/Async_ESP32_FSWebServer_DRD/data
55+
Ubuntu$ cd ~/Arduino/libraries/AsyncESP32_SC_W5500_Manager-main/examples/Async_ESP32_FSWebServer_DRD/data
5456
Ubuntu$ for file in \`\ls -A1\`; do curl -F "file=@$PWD/$file" http://async-esp32fs.local/edit; done
5557
```
5658

@@ -59,13 +61,13 @@ Ubuntu$ for file in \`\ls -A1\`; do curl -F "file=@$PWD/$file" http://async-esp3
5961
### Demonstrating pictures
6062

6163
<p align="center">
62-
<img src="https://github.com/khoih-prog/AsyncESP32_W5500_Manager/raw/main/examples/Async_ESP32_FSWebServer_DRD/pics/async-esp32fs.local.png">
64+
<img src="https://github.com/khoih-prog/AsyncESP32_SC_W5500_Manager/raw/main/examples/Async_ESP32_FSWebServer_DRD/pics/async-esp32fs.local.png">
6365
</p>
6466

6567
4. Edit / Delete / Download any file in the the folder by going to http://async-esp32fs.local/edit
6668

6769
<p align="center">
68-
<img src="https://github.com/khoih-prog/AsyncESP32_W5500_Manager/raw/main/examples/Async_ESP32_FSWebServer_DRD/pics/async-esp32fs.local_edit.png">
70+
<img src="https://github.com/khoih-prog/AsyncESP32_SC_W5500_Manager/raw/main/examples/Async_ESP32_FSWebServer_DRD/pics/async-esp32fs.local_edit.png">
6971
</p>
7072

7173

examples/Async_ESP32_FSWebServer_DRD/README.md

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Async_ESP32_FSWebServer_DRD Example
22

3-
Compare this efficient Async_ESP32_FSWebServer_DRD example with the so complicated twin [ESP32_FSWebServer_DRD](https://github.com/khoih-prog/ESP_WiFiManager/tree/main/examples/ESP32_FSWebServer_DRD) to appreciate the powerful AsynWebServer this [AsyncESP32_W5500_Manager Library](https://github.com/khoih-prog/AsyncESP32_W5500_Manager) is relying on.
3+
Compare this efficient Async_ESP32_FSWebServer_DRD example with the so complicated twin [ESP32_FSWebServer_DRD](https://github.com/khoih-prog/ESP_WiFiManager/tree/main/examples/ESP32_FSWebServer_DRD) to appreciate the powerful AsynWebServer this [AsyncESP32_SC_W5500_Manager Library](https://github.com/khoih-prog/AsyncESP32_SC_W5500_Manager) is relying on.
4+
5+
---
46

57
## First, how Config Portal works?
68

@@ -10,20 +12,20 @@ Connect to Config Portal @ the localIP address, e.g. `192.168.2.232`
1012
You'll see this `Main` page:
1113

1214
<p align="center">
13-
<img src="https://github.com/khoih-prog/AsyncESP32_W5500_Manager/raw/main/Images/Main.png">
15+
<img src="https://github.com/khoih-prog/AsyncESP32_SC_W5500_Manager/raw/main/Images/Main.png">
1416
</p>
1517

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

1820
<p align="center">
19-
<img src="https://github.com/khoih-prog/AsyncESP32_W5500_Manager/raw/main/Images/Info.png">
21+
<img src="https://github.com/khoih-prog/AsyncESP32_SC_W5500_Manager/raw/main/Images/Info.png">
2022
</p>
2123

2224

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

2527
<p align="center">
26-
<img src="https://github.com/khoih-prog/AsyncESP32_W5500_Manager/raw/main/Images/Configuration_Standard.png">
28+
<img src="https://github.com/khoih-prog/AsyncESP32_SC_W5500_Manager/raw/main/Images/Configuration_Standard.png">
2729
</p>
2830

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

3739
### Download Data files
3840

39-
1. For example, you already downloaded data files from [Async_ESP32_FSWebServer_DRD data](https://github.com/khoih-prog/AsyncESP32_W5500_Manager/tree/main/examples/Async_ESP32_FSWebServer_DRD/data) to a local folder, for example:
41+
1. For example, you already downloaded data files from [Async_ESP32_FSWebServer_DRD data](https://github.com/khoih-prog/AsyncESP32_SC_W5500_Manager/tree/main/examples/Async_ESP32_FSWebServer_DRD/data) to a local folder, for example:
4042

4143
```
42-
~/Arduino/libraries/AsyncESP32_W5500_Manager-main/examples/Async_ESP32_FSWebServer_DRD/data
44+
~/Arduino/libraries/AsyncESP32_SC_W5500_Manager-main/examples/Async_ESP32_FSWebServer_DRD/data
4345
```
4446

4547
### HOWTO Upload files to ESP32 (SPIFFS or FFat)
@@ -50,7 +52,7 @@ Use one of these methods (preferable first)
5052
2. or Upload the contents of the data folder with MkSPIFFS Tool ("ESP8266 Sketch Data Upload" in Tools menu in Arduino IDE)
5153
3. or upload the contents of a folder by running the following commands:
5254
```
53-
Ubuntu$ cd ~/Arduino/libraries/AsyncESP32_W5500_Manager-main/examples/Async_ESP32_FSWebServer_DRD/data
55+
Ubuntu$ cd ~/Arduino/libraries/AsyncESP32_SC_W5500_Manager-main/examples/Async_ESP32_FSWebServer_DRD/data
5456
Ubuntu$ for file in \`\ls -A1\`; do curl -F "file=@$PWD/$file" http://async-esp32fs.local/edit; done
5557
```
5658

@@ -59,13 +61,13 @@ Ubuntu$ for file in \`\ls -A1\`; do curl -F "file=@$PWD/$file" http://async-esp3
5961
### Demonstrating pictures
6062

6163
<p align="center">
62-
<img src="https://github.com/khoih-prog/AsyncESP32_W5500_Manager/raw/main/examples/Async_ESP32_FSWebServer_DRD/pics/async-esp32fs.local.png">
64+
<img src="https://github.com/khoih-prog/AsyncESP32_SC_W5500_Manager/raw/main/examples/Async_ESP32_FSWebServer_DRD/pics/async-esp32fs.local.png">
6365
</p>
6466

6567
4. Edit / Delete / Download any file in the the folder by going to http://async-esp32fs.local/edit
6668

6769
<p align="center">
68-
<img src="https://github.com/khoih-prog/AsyncESP32_W5500_Manager/raw/main/examples/Async_ESP32_FSWebServer_DRD/pics/async-esp32fs.local_edit.png">
70+
<img src="https://github.com/khoih-prog/AsyncESP32_SC_W5500_Manager/raw/main/examples/Async_ESP32_FSWebServer_DRD/pics/async-esp32fs.local_edit.png">
6971
</p>
7072

7173

0 commit comments

Comments
 (0)