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

Commit 3655a63

Browse files
authored
v1.2.0 for ESP32_C3
#### Releases v1.2.0 1. Add support to ESP32_C3-based boards using `LwIP W5500 Ethernet`
1 parent 73989f5 commit 3655a63

14 files changed

+25
-24
lines changed

changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
---
1212
---
1313

14+
1415
## Table of Contents
1516

1617

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "WebServer_ESP32_SC_W5500",
33
"version": "1.2.0",
44
"keywords": "WebServer, Ethernet, MQTT, MQTTS, HTTP, HTTPS, SSL, Arduino, ESP32, ESP32-S3, ESP32-S2, ESP32-C3, W5500, HTTP-Client, WebSocket-Client, MQTT-Client, server, client, websocket, LittleFS, SPIFFS, ThingStream",
5-
"description": "Simple Ethernet WebServer, HTTP/HTTPS Client wrapper library for ESP32S2/S3/C3 boards using LwIP W5500 Ethernet library. The WebServer supports HTTP(S) GET and POST requests, provides argument parsing, handles one client at a time. It provides HTTP(S), MQTT(S) Client, supports WebServer serving from LittleFS/SPIFFS and is the base for many Async-related libraries",
5+
"description": "Simple Ethernet WebServer, HTTP/HTTPS Client wrapper library for ESP32S2/S3/C3 boards using LwIP W5500 Ethernet library. The WebServer supports HTTP(S) GET and POST requests, provides argument parsing, handles one client at a time. It provides HTTP(S), MQTT(S) Client, supports WebServer serving from LittleFS/SPIFFS and is the base for many Async-related libraries.",
66
"authors":
77
{
88
"name": "Khoi Hoang",

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ author=Khoi Hoang
44
license=GPLv3
55
maintainer=Khoi Hoang <khoih.prog@gmail.com>
66
sentence=Simple Ethernet WebServer, HTTP/HTTPS Client wrapper library for ESP32S2/S3/C3 boards using LwIP W5500 Ethernet library.
7-
paragraph=The WebServer supports HTTP(S) GET and POST requests, provides argument parsing, handles one client at a time. It provides HTTP(S), MQTT(S) Client, supports WebServer serving from LittleFS/SPIFFS and is the base for many Async-related libraries
7+
paragraph=The WebServer supports HTTP(S) GET and POST requests, provides argument parsing, handles one client at a time. It provides HTTP(S), MQTT(S) Client, supports WebServer serving from LittleFS/SPIFFS and is the base for many Async-related libraries.
88
category=Communication
99
url=https://github.com/khoih-prog/WebServer_ESP32_SC_W5500
1010
architectures=esp32

src/WebServer_ESP32_SC_W5500.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/****************************************************************************************************************************
22
WebServer_ESP32_SC_W5500.h
33
4-
For Ethernet shields using ESP32_SC_W5500 (ESP32_S2/3, ESP32_C3 + LwIP W5500)
4+
For Ethernet shields using ESP32_SC_W5500 (ESP32_S2/S3/C3 + LwIP W5500)
55
6-
WebServer_ESP32_SC_W5500 is a library for the ESP32_S2/3, ESP32_C3 with LwIP Ethernet W5500
6+
WebServer_ESP32_SC_W5500 is a library for the ESP32_S2/S3/C3 with LwIP Ethernet W5500
77
88
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
99
Built by Khoi Hoang https://github.com/khoih-prog/WebServer_ESP32_SC_W5500

src/WebServer_ESP32_SC_W5500.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/****************************************************************************************************************************
22
WebServer_ESP32_SC_W5500.h
33
4-
For Ethernet shields using ESP32_SC_W5500 (ESP32_S2/3, ESP32_C3 + LwIP W5500)
4+
For Ethernet shields using ESP32_SC_W5500 (ESP32_S2/S3/C3 + LwIP W5500)
55
6-
WebServer_ESP32_SC_W5500 is a library for the ESP32_S2/3, ESP32_C3 with LwIP Ethernet W5500
6+
WebServer_ESP32_SC_W5500 is a library for the ESP32_S2/S3/C3 with LwIP Ethernet W5500
77
88
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
99
Built by Khoi Hoang https://github.com/khoih-prog/WebServer_ESP32_SC_W5500

src/WebServer_ESP32_SC_W5500_Debug.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/****************************************************************************************************************************
22
WebServer_ESP32_SC_W5500_Debug.h
33
4-
For Ethernet shields using ESP32_SC_W5500 (ESP32_S2/3, ESP32_C3 + LwIP W5500)
4+
For Ethernet shields using ESP32_SC_W5500 (ESP32_S2/S3/C3 + LwIP W5500)
55
6-
WebServer_ESP32_SC_W5500 is a library for the ESP32_S2/3, ESP32_C3 with LwIP Ethernet W5500
6+
WebServer_ESP32_SC_W5500 is a library for the ESP32_S2/S3/C3 with LwIP Ethernet W5500
77
88
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
99
Built by Khoi Hoang https://github.com/khoih-prog/WebServer_ESP32_SC_W5500

src/WebServer_ESP32_SC_W5500_Impl.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/****************************************************************************************************************************
22
WebServer_ESP32_SC_W5500_Impl.h
33
4-
For Ethernet shields using ESP32_SC_W5500 (ESP32_S2/3, ESP32_C3 + LwIP W5500)
4+
For Ethernet shields using ESP32_SC_W5500 (ESP32_S2/S3/C3 + LwIP W5500)
55
6-
WebServer_ESP32_SC_W5500 is a library for the ESP32_S2/3, ESP32_C3 with LwIP Ethernet W5500
6+
WebServer_ESP32_SC_W5500 is a library for the ESP32_S2/S3/C3 with LwIP Ethernet W5500
77
88
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
99
Built by Khoi Hoang https://github.com/khoih-prog/WebServer_ESP32_SC_W5500

src/w5500/esp32_sc_w5500.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/****************************************************************************************************************************
22
esp32_sc_w5500.cpp
33
4-
For Ethernet shields using ESP32_SC_W5500 (ESP32_S2/3, ESP32_C3 + LwIP W5500)
4+
For Ethernet shields using ESP32_SC_W5500 (ESP32_S2/S3/C3 + LwIP W5500)
55
6-
WebServer_ESP32_SC_W5500 is a library for the ESP32_S2/3, ESP32_C3 with LwIP Ethernet W5500
6+
WebServer_ESP32_SC_W5500 is a library for the ESP32_S2/S3/C3 with LwIP Ethernet W5500
77
88
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
99
Built by Khoi Hoang https://github.com/khoih-prog/WebServer_ESP32_SC_W5500

src/w5500/esp32_sc_w5500.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/****************************************************************************************************************************
22
esp32_s3_w5500.h
33
4-
For Ethernet shields using ESP32_SC_W5500 (ESP32_S2/3, ESP32_C3 + LwIP W5500)
4+
For Ethernet shields using ESP32_SC_W5500 (ESP32_S2/S3/C3 + LwIP W5500)
55
6-
WebServer_ESP32_SC_W5500 is a library for the ESP32_S2/3, ESP32_C3 with LwIP Ethernet W5500
6+
WebServer_ESP32_SC_W5500 is a library for the ESP32_S2/S3/C3 with LwIP Ethernet W5500
77
88
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
99
Built by Khoi Hoang https://github.com/khoih-prog/WebServer_ESP32_SC_W5500

src/w5500/esp_eth/esp_eth_mac_w5500.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/****************************************************************************************************************************
22
esp_eth_mac_w5500.c
33
4-
For Ethernet shields using ESP32_SC_W5500 (ESP32_S2/3, ESP32_C3 + LwIP W5500)
4+
For Ethernet shields using ESP32_SC_W5500 (ESP32_S2/S3/C3 + LwIP W5500)
55
6-
WebServer_ESP32_SC_W5500 is a library for the ESP32_S2/3, ESP32_C3 with LwIP Ethernet W5500
6+
WebServer_ESP32_SC_W5500 is a library for the ESP32_S2/S3/C3 with LwIP Ethernet W5500
77
88
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
99
Built by Khoi Hoang https://github.com/khoih-prog/WebServer_ESP32_SC_W5500

0 commit comments

Comments
 (0)