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.
@@ -1898,6 +1927,59 @@ Login using username = admin and password = esp32_enc28j60
1898
1927
```
1899
1928
1900
1929
1930
+
---
1931
+
1932
+
#### 7. Async_AdvancedWebServer_SendChunked on ESP32S2_DEV with ESP32_S2_ENC28J60
1933
+
1934
+
Following is debug terminal output when running example [Async_AdvancedWebServer_SendChunked](examples/Async_AdvancedWebServer_SendChunked) on `ESP32S2_DEV with ESP32_S2_ENC28J60`, using ESP32 core `v2.0.0+`, to demo how to use `beginChunkedResponse()` to send large `html` in chunks. The `built-in MAC address` is used now instead of user-defined one.
1935
+
1936
+
1937
+
```cpp
1938
+
Start Async_AdvancedWebServer_SendChunked on ESP32S2_DEV with ESP32_S2_ENC28J60
1939
+
AsyncWebServer_ESP32_SC_ENC v1.7.0 for core v2.0.0+
1940
+
[AWS] Default SPI pinout:
1941
+
[AWS] SPI Host: 1
1942
+
[AWS] MOSI: 35
1943
+
[AWS] MISO: 37
1944
+
[AWS] SCK: 36
1945
+
[AWS] CS: 34
1946
+
[AWS] INT: 4
1947
+
[AWS] SPI Clock (MHz): 8
1948
+
[AWS] =========================
1949
+
1950
+
ETH Started
1951
+
ETH Connected
1952
+
ETH MAC: 7E:DF:A1:08:64:27, IPv4: 192.168.2.132
1953
+
FULL_DUPLEX, 10Mbps
1954
+
AsyncWebServer is @ IP : 192.168.2.132
1955
+
..[AWS] Total length to send in chunks = 31259
1956
+
[AWS] Bytes sent in chunk = 5620
1957
+
[AWS] Bytes sent in chunk = 4300
1958
+
[AWS] Bytes sent in chunk = 4300
1959
+
[AWS] Bytes sent in chunk = 4300
1960
+
[AWS] Bytes sent in chunk = 4300
1961
+
[AWS] Bytes sent in chunk = 4300
1962
+
[AWS] Bytes sent in chunk = 4139
1963
+
[AWS] Bytes sent in chunk = 0
1964
+
[AWS] Total length to send in chunks = 31279
1965
+
[AWS] Bytes sent in chunk = 5620
1966
+
[AWS] Bytes sent in chunk = 4300
1967
+
[AWS] Bytes sent in chunk = 4300
1968
+
[AWS] Bytes sent in chunk = 4300
1969
+
[AWS] Bytes sent in chunk = 4300
1970
+
[AWS] Bytes sent in chunk = 4300
1971
+
[AWS] Bytes sent in chunk = 4159
1972
+
[AWS] Bytes sent in chunk = 0
1973
+
```
1974
+
1975
+
1976
+
You can access the Async Advanced WebServers @ the server IP
@@ -1951,6 +2033,8 @@ Submit issues to: [AsyncWebServer_ESP32_SC_ENC issues](https://github.com/khoih-
1951
2033
8. Add examples [Async_AdvancedWebServer_SendChunked](https://github.com/khoih-prog/AsyncWebServer_RP2040W/tree/main/examples/Async_AdvancedWebServer_SendChunked) and [AsyncWebServer_SendChunked](https://github.com/khoih-prog/AsyncWebServer_RP2040W/tree/main/examples/AsyncWebServer_SendChunked) to demo how to use `beginChunkedResponse()` to send large `html` in chunks
1952
2034
9. Use `allman astyle` and add `utils`
1953
2035
10. Add `Async_WebSocketsServer`, `Async_HttpBasicAuth` and `MQTT` examples
2036
+
11. Add support to **ESP32S2-based boards** using `LwIP ENC28J60 Ethernet`
0 commit comments