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

Commit 87f6dda

Browse files
authored
v1.0.0 for ESP32_S3 + LwIP ENC28J60
#### Releases v1.0.0 1. Initial coding to port `synchronous` [ESP_WiFiManager](https://github.com/khoih-prog/ESP_WiFiManager) to `ESP32_S2/S3/C3` boards using `LwIP ENC28J60 Ethernet`. 2. Use `allman astyle`
1 parent f817a44 commit 87f6dda

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

examples/ESP32_FSWebServer/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,20 @@ Connect to Config Portal @ the localIP address, e.g. `192.168.2.232`
88
You'll see this `Main` page:
99

1010
<p align="center">
11-
<img src="https://github.com/khoih-prog/ESP32_ENC_Manager/raw/main/Images/Main.png">
11+
<img src="https://github.com/khoih-prog/ESP32_SC_ENC_Manager/raw/main/Images/Main.png">
1212
</p>
1313

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

1616
<p align="center">
17-
<img src="https://github.com/khoih-prog/ESP32_ENC_Manager/raw/main/Images/Info.png">
17+
<img src="https://github.com/khoih-prog/ESP32_SC_ENC_Manager/raw/main/Images/Info.png">
1818
</p>
1919

2020

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

2323
<p align="center">
24-
<img src="https://github.com/khoih-prog/ESP32_ENC_Manager/raw/main/Images/Configuration_Standard.png">
24+
<img src="https://github.com/khoih-prog/ESP32_SC_ENC_Manager/raw/main/Images/Configuration_Standard.png">
2525
</p>
2626

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

3535
### Download Data files
3636

37-
1. For example, you already downloaded data files from [ESP32_FSWebServer data](https://github.com/khoih-prog/ESP32_ENC_Manager/tree/main/examples/ESP32_FSWebServer/data) to a local folder, for example:
37+
1. For example, you already downloaded data files from [ESP32_FSWebServer data](https://github.com/khoih-prog/ESP32_SC_ENC_Manager/tree/main/examples/ESP32_FSWebServer/data) to a local folder, for example:
3838

3939
```
40-
~/Arduino/libraries/ESP32_ENC_Manager-main/examples/ESP32_FSWebServer/data
40+
~/Arduino/libraries/ESP32_SC_ENC_Manager-main/examples/ESP32_FSWebServer/data
4141
```
4242

4343
### HOWTO Upload files to ESP32 (SPIFFS or FFat)
@@ -48,7 +48,7 @@ Use one of these methods (preferable first)
4848
2. or Upload the contents of the data folder with MkSPIFFS Tool ("ESP8266 Sketch Data Upload" in Tools menu in Arduino IDE)
4949
3. or upload the contents of a folder by running the following commands:
5050
```
51-
Ubuntu$ cd ~/Arduino/libraries/ESP32_ENC_Manager-main/examples/ESP32_FSWebServer/data
51+
Ubuntu$ cd ~/Arduino/libraries/ESP32_SC_ENC_Manager-main/examples/ESP32_FSWebServer/data
5252
Ubuntu$ for file in \`\ls -A1\`; do curl -F "file=@$PWD/$file" http://esp32fs.local/edit; done
5353
```
5454

@@ -57,13 +57,13 @@ Ubuntu$ for file in \`\ls -A1\`; do curl -F "file=@$PWD/$file" http://esp32fs.lo
5757
### Demonstrating pictures
5858

5959
<p align="center">
60-
<img src="https://github.com/khoih-prog/ESP32_ENC_Manager/raw/main/examples/ESP32_FSWebServer/pics/esp32fs.local.png">
60+
<img src="https://github.com/khoih-prog/ESP32_SC_ENC_Manager/raw/main/examples/ESP32_FSWebServer/pics/esp32fs.local.png">
6161
</p>
6262

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

6565
<p align="center">
66-
<img src="https://github.com/khoih-prog/ESP32_ENC_Manager/raw/main/examples/ESP32_FSWebServer/pics/esp32fs.local_edit.png">
66+
<img src="https://github.com/khoih-prog/ESP32_SC_ENC_Manager/raw/main/examples/ESP32_FSWebServer/pics/esp32fs.local_edit.png">
6767
</p>
6868

6969

examples/ESP32_FSWebServer_DRD/README.md

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

1111
<p align="center">
12-
<img src="https://github.com/khoih-prog/ESP32_ENC_Manager/raw/main/Images/Main.png">
12+
<img src="https://github.com/khoih-prog/ESP32_SC_ENC_Manager/raw/main/Images/Main.png">
1313
</p>
1414

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

1717
<p align="center">
18-
<img src="https://github.com/khoih-prog/ESP32_ENC_Manager/raw/main/Images/Info.png">
18+
<img src="https://github.com/khoih-prog/ESP32_SC_ENC_Manager/raw/main/Images/Info.png">
1919
</p>
2020

2121

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

2424
<p align="center">
25-
<img src="https://github.com/khoih-prog/ESP32_ENC_Manager/raw/main/Images/Configuration_Standard.png">
25+
<img src="https://github.com/khoih-prog/ESP32_SC_ENC_Manager/raw/main/Images/Configuration_Standard.png">
2626
</p>
2727

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

3636
### Download Data files
3737

38-
1. For example, you already downloaded data files from [ESP32_FSWebServer_DRD data](https://github.com/khoih-prog/ESP32_ENC_Manager/tree/main/examples/ESP32_FSWebServer_DRD/data) to a local folder, for example:
38+
1. For example, you already downloaded data files from [ESP32_FSWebServer_DRD data](https://github.com/khoih-prog/ESP32_SC_ENC_Manager/tree/main/examples/ESP32_FSWebServer_DRD/data) to a local folder, for example:
3939

4040
```
41-
~/Arduino/libraries/ESP32_ENC_Manager-main/examples/ESP32_FSWebServer_DRD/data
41+
~/Arduino/libraries/ESP32_SC_ENC_Manager-main/examples/ESP32_FSWebServer_DRD/data
4242
```
4343

4444
### HOWTO Upload files to ESP32 (SPIFFS or FFat)
@@ -49,7 +49,7 @@ Use one of these methods (preferable first)
4949
2. or Upload the contents of the data folder with MkSPIFFS Tool ("ESP8266 Sketch Data Upload" in Tools menu in Arduino IDE)
5050
3. or upload the contents of a folder by running the following commands:
5151
```
52-
Ubuntu$ cd ~/Arduino/libraries/ESP32_ENC_Manager-main/examples/ESP32_FSWebServer_DRD/data
52+
Ubuntu$ cd ~/Arduino/libraries/ESP32_SC_ENC_Manager-main/examples/ESP32_FSWebServer_DRD/data
5353
Ubuntu$ for file in \`\ls -A1\`; do curl -F "file=@$PWD/$file" http://esp32fs.local/edit; done
5454
```
5555

@@ -58,13 +58,13 @@ Ubuntu$ for file in \`\ls -A1\`; do curl -F "file=@$PWD/$file" http://esp32fs.lo
5858
### Demonstrating pictures
5959

6060
<p align="center">
61-
<img src="https://github.com/khoih-prog/ESP32_ENC_Manager/raw/main/examples/ESP32_FSWebServer_DRD/pics/esp32fs.local.png">
61+
<img src="https://github.com/khoih-prog/ESP32_SC_ENC_Manager/raw/main/examples/ESP32_FSWebServer_DRD/pics/esp32fs.local.png">
6262
</p>
6363

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

6666
<p align="center">
67-
<img src="https://github.com/khoih-prog/ESP32_ENC_Manager/raw/main/examples/ESP32_FSWebServer_DRD/pics/esp32fs.local_edit.png">
67+
<img src="https://github.com/khoih-prog/ESP32_SC_ENC_Manager/raw/main/examples/ESP32_FSWebServer_DRD/pics/esp32fs.local_edit.png">
6868
</p>
6969

7070

0 commit comments

Comments
 (0)