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

Commit 96e7bab

Browse files
authored
v1.0.0 for ESP32_S3 + LwIP W5500
#### Releases v1.0.0 1. Initial coding to support ESP32_S3-based boards using `LwIP W5500 Ethernet`. 2. Use `allman astyle`
1 parent 0ef8ef0 commit 96e7bab

File tree

1 file changed

+10
-12
lines changed

1 file changed

+10
-12
lines changed

README.md

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,11 @@
5454
* [File AdvancedWebServer.ino](#file-advancedwebserverino)
5555
* [Debug Terminal Output Samples](#debug-terminal-output-samples)
5656
* [ 1. AdvancedWebServer on ESP32S3_DEV with ESP32_S3_W5500](#1-AdvancedWebServer-on-ESP32S3_DEV-with-ESP32_S3_W5500)
57-
* [ 2. MQTT_ThingStream on ESP32S3_DEV with ESP32_S3_W5500](#3-MQTT_ThingStream-on-ESP32S3_DEV-with-ESP32_S3_W5500)
58-
* [ 3. MQTTClient_Auth on ESP32S3_DEV with ESP32_S3_W5500](#4-MQTTClient_Auth-on-ESP32S3_DEV-with-ESP32_S3_W5500)
59-
* [ 4. MQTTClient_Basic on ESP32S3_DEV with ESP32_S3_W5500](#5-MQTTClient_Basic-on-ESP32S3_DEV-with-ESP32_S3_W5500)
60-
* [ 6. WebClient on ESP32S3_DEV with ESP32_S3_W5500](#6-WebClient-on-ESP32S3_DEV-with-ESP32_S3_W5500)
61-
* [ 7. UDPSendReceive on ESP32S3_DEV with ESP32_S3_W5500](#7-UDPSendReceive-on-ESP32S3_DEV-with-ESP32_S3_W5500)
57+
* [ 2. MQTT_ThingStream on ESP32S3_DEV with ESP32_S3_W5500](#2-MQTT_ThingStream-on-ESP32S3_DEV-with-ESP32_S3_W5500)
58+
* [ 3. MQTTClient_Auth on ESP32S3_DEV with ESP32_S3_W5500](#3-MQTTClient_Auth-on-ESP32S3_DEV-with-ESP32_S3_W5500)
59+
* [ 4. MQTTClient_Basic on ESP32S3_DEV with ESP32_S3_W5500](#4-MQTTClient_Basic-on-ESP32S3_DEV-with-ESP32_S3_W5500)
60+
* [ 5. WebClient on ESP32S3_DEV with ESP32_S3_W5500](#5-WebClient-on-ESP32S3_DEV-with-ESP32_S3_W5500)
61+
* [ 6. UDPSendReceive on ESP32S3_DEV with ESP32_S3_W5500](#6-UDPSendReceive-on-ESP32S3_DEV-with-ESP32_S3_W5500)
6262
* [Debug](#debug)
6363
* [Troubleshooting](#troubleshooting)
6464
* [Releases](#releases)
@@ -118,7 +118,7 @@ This [**WebServer_ESP32_SC_W5500** library](https://github.com/khoih-prog/WebSer
118118
## Prerequisites
119119

120120
1. [`Arduino IDE 1.8.19+` for Arduino](https://github.com/arduino/Arduino). [![GitHub release](https://img.shields.io/github/release/arduino/Arduino.svg)](https://github.com/arduino/Arduino/releases/latest)
121-
2. [`ESP32 Core 2.0.5+`](https://github.com/espressif/arduino-esp32) for ESP32-based ESP32_DEV with W5500 boards. [![Latest release](https://img.shields.io/github/release/espressif/arduino-esp32.svg)](https://github.com/espressif/arduino-esp32/releases/latest/)
121+
2. [`ESP32 Core 2.0.5+`](https://github.com/espressif/arduino-esp32) for ESP32-based ESP32S2/S3/C3_DEV with W5500 boards. [![Latest release](https://img.shields.io/github/release/espressif/arduino-esp32.svg)](https://github.com/espressif/arduino-esp32/releases/latest/)
122122

123123

124124
---
@@ -179,8 +179,6 @@ in many files. But be sure to use the following `.h` file **in just 1 `.h`, `.cp
179179
#include "WebServer_ESP32_SC_W5500.h" //https://github.com/khoih-prog/WebServer_ESP32_SC_W5500
180180
```
181181

182-
Check the new [**multiFileProject** example](examples/multiFileProject) for a `HOWTO` demo.
183-
184182

185183
---
186184
---
@@ -484,7 +482,7 @@ MQTT Message receive [ESP32_Pub] Hello from MQTT_ThingStream on ESP32S3_DEV with
484482

485483
---
486484

487-
#### 4. MQTTClient_Auth on ESP32S3_DEV with ESP32_S3_W5500
485+
#### 3. MQTTClient_Auth on ESP32S3_DEV with ESP32_S3_W5500
488486

489487
The terminal output of **ESP32S3_DEV with W5500** running [MQTTClient_Auth example](examples/MQTTClient_Auth)
490488

@@ -515,7 +513,7 @@ Message Send : MQTT_Pub => Hello from MQTTClient_Auth on ESP32S3_DEV with ESP32_
515513
516514
---
517515
518-
#### 5. MQTTClient_Basic on ESP32S3_DEV with ESP32_S3_W5500
516+
#### 4. MQTTClient_Basic on ESP32S3_DEV with ESP32_S3_W5500
519517
520518
The terminal output of **ESP32S3_DEV with W5500** running [MQTTClient_Basic example](examples/MQTTClient_Basic)
521519
@@ -545,7 +543,7 @@ Message arrived [MQTT_Pub] Hello from MQTTClient_Basic on ESP32S3_DEV with ESP32
545543
---
546544

547545

548-
#### 6. WebClient on ESP32S3_DEV with ESP32_S3_W5500
546+
#### 5. WebClient on ESP32S3_DEV with ESP32_S3_W5500
549547

550548
The terminal output of **ESP32S3_DEV with W5500** running [WebClient example](examples/WebClient)
551549

@@ -631,7 +629,7 @@ Disconnecting from server...
631629
632630
---
633631
634-
#### 7. UDPSendReceive on ESP32S3_DEV with ESP32_S3_W5500
632+
#### 6. UDPSendReceive on ESP32S3_DEV with ESP32_S3_W5500
635633
636634
The terminal output of **ESP32S3_DEV with W5500** running [UDPSendReceive example](examples/UDPSendReceive)
637635

0 commit comments

Comments
 (0)