You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 4, 2023. It is now read-only.
*[5. Async_WebSocketsServer on ESP32S3_DEV with ESP32_S3_W5500](#5-Async_WebSocketsServer-on-ESP32S3_DEV-with-ESP32_S3_W5500)
105
104
*[6. Async_HTTPBasicAuth on ESP32S3_DEV with ESP32_S3_W5500](#6-Async_HTTPBasicAuth-on-ESP32S3_DEV-with-ESP32_S3_W5500)
106
105
*[7. Async_AdvancedWebServer_SendChunked on ESP32S2_DEV with ESP32_S2_W5500](#7-Async_AdvancedWebServer_SendChunked-on-ESP32S2_DEV-with-ESP32_S2_W5500)
106
+
*[8. Async_AdvancedWebServer_SendChunked on ESP32C3_DEV with ESP32_C3_W5500](#8-Async_AdvancedWebServer_SendChunked-on-ESP32C3_DEV-with-ESP32_C3_W5500)
107
107
*[Debug](#debug)
108
108
*[Troubleshooting](#troubleshooting)
109
109
*[Issues](#issues)
@@ -222,8 +222,8 @@ to apply the better and faster **asynchronous** feature of the **powerful** [ESP
222
222
223
223
1.**ESP32_S3 boards** using `LwIP W5500 Ethernet`
224
224
2.**ESP32_S2 boards** using `LwIP W5500 Ethernet`
225
+
3.**ESP32_C3 boards** using `LwIP W5500 Ethernet`
225
226
226
-
Hopefully the `ESP32_C3-based` boards will be supported in the near future to use `LwIP W5500 or ENC28J60 Ethernet`
227
227
228
228
---
229
229
@@ -240,6 +240,13 @@ to apply the better and faster **asynchronous** feature of the **powerful** [ESP
#### 8. Async_AdvancedWebServer_SendChunked on ESP32C3_DEV with ESP32_C3_W5500
2030
+
2031
+
Following is debug terminal output when running example [Async_AdvancedWebServer_SendChunked](examples/Async_AdvancedWebServer_SendChunked) on `ESP32C3_DEV with LwIP W5500`, using ESP32 core `v2.0.0+`, to demo how to use `beginChunkedResponse()` to send large `html` in chunks. The `built-in MAC address` is now used instead of user-defined one.
2032
+
2033
+
```cpp
2034
+
Start Async_AdvancedWebServer_SendChunked on ESP32C3_DEV with ESP32_C3_W5500
Copy file name to clipboardExpand all lines: library.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name":"AsyncWebServer_ESP32_SC_W5500",
3
-
"version": "1.7.0",
3
+
"version": "1.8.0",
4
4
"description":"Asynchronous HTTP and WebSocket Server Library for (ESP32_S2/S3/C3 + LwIP W5500). Now supporting using CString to save heap to send very large data and with examples to demo how to use beginChunkedResponse() to send large html in chunks",
0 commit comments