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

Commit f0ea22e

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 cc8324a commit f0ea22e

File tree

1 file changed

+36
-1
lines changed

1 file changed

+36
-1
lines changed

README.md

Lines changed: 36 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@
1717
* [Why do we need this AsyncESP32_SC_W5500_Manager library](#why-do-we-need-this-async-AsyncESP32_SC_W5500_Manager-library)
1818
* [Features](#features)
1919
* [Why Async is better](#why-async-is-better)
20+
* [Twin Libraries](#Twin-Libraries)
21+
* [Base libraries](#Base-libraries)
22+
* [Synchronous Ethernet Manager libraries](#Synchronous-Ethernet-Manager-libraries)
23+
* [Asynchronous Ethernet Manager libraries](#Asynchronous-Ethernet-Manager-libraries)
2024
* [Currently supported Boards](#currently-supported-boards)
2125
* [Changelog](changelog.md)
2226
* [Prerequisites](#prerequisites)
@@ -125,6 +129,7 @@ to use the better and faster **asynchronous** [ESPAsyncWebServer](https://github
125129

126130
Thanks to this [AsyncESP32_SC_W5500_Manager library](https://github.com/khoih-prog/AsyncESP32_SC_W5500_Manager) is based on and sync'ed with [`ESPAsync_WiFiManager`](https://github.com/khoih-prog/ESPAsync_WiFiManager), all the features currently supported by [`ESPAsync_WiFiManager`](https://github.com/khoih-prog/ESPAsync_WiFiManager) will be available. Please have a look at [`ESPAsync_WiFiManager`](https://github.com/khoih-prog/ESPAsync_WiFiManager) for those too-many-to-list features.
127131

132+
---
128133

129134
### Why Async is better
130135

@@ -143,6 +148,36 @@ Thanks to this [AsyncESP32_SC_W5500_Manager library](https://github.com/khoih-pr
143148

144149
To appreciate the power of the [ESPAsyncWebServer](https://github.com/me-no-dev/ESPAsyncWebServer) and underlying Async libraries, please compare the more efficient [Async_ESP32_FSWebServer example](examples/Async_ESP32_FSWebServer) example with the complicated twin [ESP32_FSWebServer](https://github.com/khoih-prog/ESP_WiFiManager/tree/master/examples/ESP32_FSWebServer).
145150

151+
---
152+
153+
### Twin Libraries
154+
155+
156+
Please also check these twin libraries
157+
158+
#### Base libraries
159+
160+
1. [WebServer_WT32_ETH01](https://github.com/khoih-prog/WebServer_WT32_ETH01) for ESP32-based `WT32_ETH01` using `LwIP LAN8720`
161+
2. [WebServer_ESP32_ENC](https://github.com/khoih-prog/WebServer_ESP32_ENC) for ESP32-boards using `LwIP ENC28J60`
162+
3. [WebServer_ESP32_W5500](https://github.com/khoih-prog/WebServer_ESP32_W5500) for ESP32-boards using `LwIP W5500`
163+
4. [WebServer_ESP32_SC_ENC](https://github.com/khoih-prog/WebServer_ESP32_SC_ENC) for ESP32_S2/S3/C3-boards using `LwIP ENC28J60`
164+
5. [WebServer_ESP32_SC_W5500](https://github.com/khoih-prog/WebServer_ESP32_SC_W5500) for ESP32_S2/S3/C3-boards using `LwIP W5500`
165+
166+
167+
#### Synchronous Ethernet Manager libraries
168+
169+
1. [ESP32_ENC_Manager](https://github.com/khoih-prog/ESP32_ENC_Manager) for ESP32-boards using `LwIP ENC28J60`
170+
2. [ESP32_W5500_Manager](https://github.com/khoih-prog/ESP32_W5500_Manager) for ESP32-boards using `LwIP W5500`
171+
3. [ESP32_Ethernet_Manager](https://github.com/khoih-prog/ESP32_Ethernet_Manager) for ESP32-boards using `LwIP W5500 or ENC28J60`
172+
173+
#### Asynchronous Ethernet Manager libraries
174+
175+
1. [AsyncWT32_ETH01_Manager](https://github.com/khoih-prog/AsyncWT32_ETH01_Manager) for ESP32-based `WT32_ETH01` using `LwIP LAN8720`
176+
2. [AsyncESP32_ENC_Manager](https://github.com/khoih-prog/AsyncESP32_ENC_Manager) for ESP32-boards using `LwIP ENC28J60`
177+
3. [AsyncESP32_W5500_Manager](https://github.com/khoih-prog/AsyncESP32_W5500_Manager) for ESP32-boards using `LwIP W5500`
178+
4. [AsyncESP32_Ethernet_Manager](https://github.com/khoih-prog/AsyncESP32_Ethernet_Manager) for ESP32-boards using `LwIP W5500 or ENC28J60`
179+
180+
---
146181

147182
#### Currently supported Boards
148183

@@ -181,7 +216,7 @@ This [**AsyncESP32_SC_W5500_Manager** library](https://github.com/khoih-prog/Asy
181216
4. [`ESPAsyncDNSServer v1.0.0+`](https://github.com/devyte/ESPAsyncDNSServer) or [`Forked ESPAsyncDNSServer v1.0.0+`](https://github.com/khoih-prog/ESPAsyncDNSServer/releases/tag/v1.0.0)
182217
5. [`AsyncTCP v1.1.1+`](https://github.com/me-no-dev/AsyncTCP). **To install manually for Arduino IDE**
183218
6. [`ESP_DoubleResetDetector v1.3.2+`](https://github.com/khoih-prog/ESP_DoubleResetDetector) if using DRD feature. To install, check [![arduino-library-badge](https://www.ardu-badge.com/badge/ESP_DoubleResetDetector.svg?)](https://www.ardu-badge.com/ESP_DoubleResetDetector). Use v1.1.0+ if using `LittleFS` for ESP32 v1.0.6+.
184-
7. [`WebServer_ESP32_SC_W5500 library v1.0.0+`](https://github.com/khoih-prog/WebServer_ESP32_SC_W5500) if necessary to use ESP32 boards using LwIP W5500 Ethernet. To install, check [![arduino-library-badge](https://www.ardu-badge.com/badge/WebServer_ESP32_SC_W5500.svg?)](https://www.ardu-badge.com/WebServer_ESP32_SC_W5500)
219+
7. [`WebServer_ESP32_SC_W5500 library v1.0.1+`](https://github.com/khoih-prog/WebServer_ESP32_SC_W5500) if necessary to use ESP32 boards using LwIP W5500 Ethernet. To install, check [![arduino-library-badge](https://www.ardu-badge.com/badge/WebServer_ESP32_SC_W5500.svg?)](https://www.ardu-badge.com/WebServer_ESP32_SC_W5500)
185220

186221
---
187222
---

0 commit comments

Comments
 (0)