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

Commit 1734ab6

Browse files
authored
v1.8.0 for ESP32 using WiFi / LwIP Ethernet
### Releases v1.8.0 1. Initial coding to port [AsyncMQTT_Generic](https://github.com/khoih-prog/AsyncMQTT_Generic) to `ESP32/S2/S3/C3` boards using WiFi or `LwIP W5500 / ENC28J60 / LAN8720 Ethernet` 2. Use `allman astyle` 3. Sync with [AsyncMQTT_Generic v1.8.0](https://github.com/khoih-prog/AsyncMQTT_Generic)
1 parent 13cac43 commit 1734ab6

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -326,12 +326,12 @@ You can change the `INT` pin to another one. Default is `GPIO4`
326326
1. [FullyFeatured_ESP32_W5500](examples/ESP32_W5500/FullyFeatured_ESP32_W5500)
327327
2. [FullyFeaturedSSL_ESP32_W5500](examples/ESP32_W5500/FullyFeaturedSSL_ESP32_W5500)
328328

329-
#### 3. For ESP32_SC_ENC
329+
#### 5. For ESP32_SC_ENC
330330

331331
1. [FullyFeatured_ESP32_SC_ENC](examples/ESP32_SC_ENC/FullyFeatured_ESP32_SC_ENC)
332332
2. [FullyFeaturedSSL_ESP32_SC_ENC](examples/ESP32_SC_ENC/FullyFeaturedSSL_ESP32_SC_ENC)
333333

334-
#### 4. For ESP32_SC_W5500
334+
#### 6. For ESP32_SC_W5500
335335

336336
1. [FullyFeatured_ESP32_SC_W5500](examples/ESP32_SC_W5500/FullyFeatured_ESP32_SC_W5500)
337337
2. [FullyFeaturedSSL_ESP32_SC_W5500](examples/ESP32_SC_W5500/FullyFeaturedSSL_ESP32_SC_W5500)
@@ -360,7 +360,7 @@ https://github.com/khoih-prog/AsyncMQTT_ESP32/blob/77a895f1e7e46d279b941b2ffd218
360360

361361
#### 1. FullyFeature_ESP32_SC_W5500 on ESP32S3_DEV with ESP32_S3_W5500
362362

363-
This is terminal debug output when running [FullyFeature_ESP32_SC_W5500](examples/ESP32_SC_W5500/FullyFeature_ESP32_SC_W5500) on **ESP32S3_DEV** with `LwIP W5500`, connecting to `broker.emqx.io` MQTT server.
363+
This is terminal debug output when running [FullyFeatured_ESP32_SC_W5500](examples/ESP32_SC_W5500/FullyFeatured_ESP32_SC_W5500) on **ESP32S3_DEV** with `LwIP W5500`, connecting to `broker.emqx.io` MQTT server.
364364

365365
```cpp
366366
Starting FullyFeature_ESP32_SC_W5500 on ESP32S3_DEV with ESP32_S3_W5500
@@ -417,7 +417,7 @@ Publish acknowledged.
417417

418418
#### 2. FullyFeatureSSL_ESP32_SC_W5500 on ESP32S3_DEV with ESP32_S3_W5500
419419

420-
This is terminal debug output when running [FullyFeatureSSL_ESP32_SC_W5500](examples/ESP32_SC_W5500/FullyFeatureSSL_ESP32_SC_W5500) on **ESP32S3_DEV** with `LwIP W5500`, connecting to `broker.emqx.io` secured MQTTS server (port 8883)
420+
This is terminal debug output when running [FullyFeaturedSSL_ESP32_SC_W5500](examples/ESP32_SC_W5500/FullyFeaturedSSL_ESP32_SC_W5500) on **ESP32S3_DEV** with `LwIP W5500`, connecting to `broker.emqx.io` secured MQTTS server (port 8883)
421421

422422

423423
```cpp
@@ -475,7 +475,7 @@ Publish acknowledged
475475

476476
#### 3. FullyFeature_ESP32_SC_ENC on ESP32S3_DEV with ESP32_S3_ENC28J60
477477

478-
This is terminal debug output when running [FullyFeature_ESP32_SC_ENC](examples/ESP32_SC_ENC/FullyFeature_ESP32_SC_ENC) on **ESP32S3_DEV** with `LwIP ENC28J60`, connecting to `broker.emqx.io` MQTT server.
478+
This is terminal debug output when running [FullyFeatured_ESP32_SC_ENC](examples/ESP32_SC_ENC/FullyFeatured_ESP32_SC_ENC) on **ESP32S3_DEV** with `LwIP ENC28J60`, connecting to `broker.emqx.io` MQTT server.
479479

480480
```cpp
481481
Starting FullyFeature_ESP32_SC_ENC on ESP32S3_DEV with ESP32_S3_ENC28J60
@@ -532,7 +532,7 @@ Publish acknowledged.
532532

533533
#### 4. FullyFeatureSSL_ESP32_SC_ENC on ESP32S3_DEV with ESP32_S3_ENC28J60
534534

535-
This is terminal debug output when running [FullyFeatureSSL_ESP32_SC_ENC](examples/ESP32_SC_ENC/FullyFeatureSSL_ESP32_SC_ENC) on **ESP32S3_DEV** with `LwIP ENC28J60`, connecting to `broker.emqx.io` secured MQTTS server (port 8883)
535+
This is terminal debug output when running [FullyFeaturedSSL_ESP32_SC_ENC](examples/ESP32_SC_ENC/FullyFeaturedSSL_ESP32_SC_ENC) on **ESP32S3_DEV** with `LwIP ENC28J60`, connecting to `broker.emqx.io` secured MQTTS server (port 8883)
536536

537537

538538
```cpp
@@ -590,7 +590,7 @@ Publish acknowledged
590590

591591
#### 5. FullyFeatureSSL_WT32_ETH01 on WT32-ETH01 with ETH_PHY_LAN8720
592592

593-
This is terminal debug output when running [FullyFeatureSSL_WT32_ETH01](examples/WT32_ETH01/FullyFeatureSSL_WT32_ETH01) on **WT32-ETH01** connecting to `broker.emqx.io` secured MQTT server (port 8883)
593+
This is terminal debug output when running [FullyFeaturedSSL_WT32_ETH01](examples/WT32_ETH01/FullyFeaturedSSL_WT32_ETH01) on **WT32-ETH01** connecting to `broker.emqx.io` secured MQTT server (port 8883)
594594

595595

596596
```cpp

0 commit comments

Comments
 (0)