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

Commit 6a9d4e6

Browse files
authored
v1.5.0 to add support to ESP8266 W5x00/ENC28J60
### Releases v1.5.0 1. Add support to ESP8266 W5x00 using [lwIP_w5100](https://github.com/esp8266/Arduino/tree/master/libraries/lwIP_w5100) or [lwIP_w5500](https://github.com/esp8266/Arduino/tree/master/libraries/lwIP_w5500) library 2. Add support to ESP8266 ENC28J60 using [lwIP_enc28j60](https://github.com/esp8266/Arduino/tree/master/libraries/lwIP_enc28j60) library 3. Add example [FullyFeatured_ESP8266_Ethernet](examples/ESP8266/FullyFeatured_ESP8266_Ethernet) 4. Update `Packages' Patches`
1 parent 6b024e2 commit 6a9d4e6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+351
-73
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Please ensure to specify the following:
2929
Arduino IDE version: 1.8.19
3030
ESP32 Core Version 2.0.2
3131
OS: Ubuntu 20.04 LTS
32-
Linux xy-Inspiron-3593 5.13.0-35-generic #40~20.04.1-Ubuntu SMP Mon Mar 7 09:18:32 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
32+
Linux xy-Inspiron-3593 5.13.0-39-generic #44~20.04.1-Ubuntu SMP Thu Mar 24 16:43:35 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
3333
3434
Context:
3535
I encountered an endless loop while trying to connect to Local WiFi.

README.md

Lines changed: 192 additions & 20 deletions
Large diffs are not rendered by default.

changelog.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
## Table of Contents
1212

1313
* [Changelog](#changelog)
14+
* [Releases v1.5.0](#releases-v150)
1415
* [Releases v1.4.0](#releases-v140)
1516
* [Releases v1.3.0](#releases-v130)
1617
* [Releases v1.2.1](#releases-v121)
@@ -24,6 +25,13 @@
2425

2526
## Changelog
2627

28+
### Releases v1.5.0
29+
30+
1. Add support to ESP8266 W5x00 using [lwIP_w5100](https://github.com/esp8266/Arduino/tree/master/libraries/lwIP_w5100) or [lwIP_w5500](https://github.com/esp8266/Arduino/tree/master/libraries/lwIP_w5500) library
31+
2. Add support to ESP8266 ENC28J60 using [lwIP_enc28j60](https://github.com/esp8266/Arduino/tree/master/libraries/lwIP_enc28j60) library
32+
3. Add example [FullyFeatured_ESP8266_Ethernet](examples/ESP8266/FullyFeatured_ESP8266_Ethernet)
33+
4. Update `Packages' Patches`
34+
2735
### Releases v1.4.0
2836

2937
1. Add support to **Teensy 4.1 using QNEthernet Library**

library.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "AsyncMQTT_Generic",
3-
"version": "1.4.0",
3+
"version": "1.5.0",
44
"keywords": "communication, iot, automation, async, async-tcp, async-tcp-ssl, async-mqtt, mqtt, async-mqtt-client, esp8266, esp32, stm32, portenta-h7, wt32-eth01, tls, teensy-41, qn-ethernet, lwip, lan8742a, lan8720",
55
"description": "Arduino Library for ESP8266, ESP32, Portenta_H7 and STM32 asynchronous MQTT client implementation. This library, ported to support ESP32, WT32_ETH01 (ESP32 + LAN8720), ESP8266, Portenta_H7 (Ethernet or WiFi) and STM32 (LAN8742A or LAN8720 Ethernet), Teensy 4.1 using QNEthernet. Currently supporting TLS/SSL for ESP32 only",
66
"authors":
@@ -53,6 +53,12 @@
5353
"version": ">=1.0.0",
5454
"platforms": ["teensy", "avr"]
5555
},
56+
{
57+
"owner": "khoih-prog",
58+
"name": "ESPAsync_WiFiManager",
59+
"version": ">=1.12.2",
60+
"platforms": ["espressif32", "espressif8266"]
61+
},
5662
{
5763
"owner": "khoih-prog",
5864
"name": "WebServer_WT32_ETH01",

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=AsyncMQTT_Generic
2-
version=1.4.0
2+
version=1.5.0
33
author=Marvin ROGER,Khoi Hoang <khoih.prog@gmail.com>
44
maintainer=Khoi Hoang <khoih.prog@gmail.com>
55
sentence=Arduino Library for ESP8266, ESP32, Portenta_H7 and STM32 asynchronous MQTT client implementation

platformio/platformio.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ lib_deps =
5353
; Teensy41_AsyncTCP@>=1.0.0
5454
; LittleFS_esp32@>=1.0.6
5555
; WebServer_WT32_ETH01@>=1.4.1
56+
; AsyncTCP_SSL@>=1.2.0
5657

5758
; PlatformIO 5.x
5859
me-no-dev/AsyncTCP@>=1.1.1
@@ -66,6 +67,7 @@ lib_deps =
6667
khoih-prog/Teensy41_AsyncTCP@>=1.0.0
6768
lorol/LittleFS_esp32@>=1.0.6
6869
khoih-prog/WebServer_WT32_ETH01@>=1.4.1
70+
khoih-prog/AsyncTCP_SSL@>=1.2.0
6971

7072
build_flags =
7173
; set your debug output (default=Serial)

src/AsyncMqttClient/Callbacks.hpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
1010
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMqttClient_Generic
1111
12-
Version: 1.3.0
12+
Version: 1.5.0
1313
1414
Version Modified By Date Comments
1515
------- ----------- ---------- -----------
@@ -19,6 +19,8 @@
1919
1.2.0 K Hoang 15/03/2022 Add support to STM32 using LAN8742A (without TLS/SSL)
2020
1.2.1 K Hoang 16/03/2022 Add support to STM32 using LAN8720 (without TLS/SSL)
2121
1.3.0 K Hoang 16/03/2022 Add support to Portenta_H7 using built-in Ethernet or Murata WiFi (without TLS/SSL)
22+
1.4.0 K Hoang 17/03/2022 Add support to Teensy 4.1 using QNEthernet Library
23+
1.5.0 K Hoang 14/04/2022 Add support to ESP8266 W5x00/ENC28J60 using lwip_W5100/lwip_W5500 or lwip_enc28j60 library
2224
*****************************************************************************************************************************/
2325

2426
#pragma once

src/AsyncMqttClient/DisconnectReasons.hpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
1010
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMqttClient_Generic
1111
12-
Version: 1.3.0
12+
Version: 1.5.0
1313
1414
Version Modified By Date Comments
1515
------- ----------- ---------- -----------
@@ -19,6 +19,8 @@
1919
1.2.0 K Hoang 15/03/2022 Add support to STM32 using LAN8742A (without TLS/SSL)
2020
1.2.1 K Hoang 16/03/2022 Add support to STM32 using LAN8720 (without TLS/SSL)
2121
1.3.0 K Hoang 16/03/2022 Add support to Portenta_H7 using built-in Ethernet or Murata WiFi (without TLS/SSL)
22+
1.4.0 K Hoang 17/03/2022 Add support to Teensy 4.1 using QNEthernet Library
23+
1.5.0 K Hoang 14/04/2022 Add support to ESP8266 W5x00/ENC28J60 using lwip_W5100/lwip_W5500 or lwip_enc28j60 library
2224
*****************************************************************************************************************************/
2325

2426
#pragma once

src/AsyncMqttClient/Errors.hpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
1010
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMqttClient_Generic
1111
12-
Version: 1.3.0
12+
Version: 1.5.0
1313
1414
Version Modified By Date Comments
1515
------- ----------- ---------- -----------
@@ -19,6 +19,8 @@
1919
1.2.0 K Hoang 15/03/2022 Add support to STM32 using LAN8742A (without TLS/SSL)
2020
1.2.1 K Hoang 16/03/2022 Add support to STM32 using LAN8720 (without TLS/SSL)
2121
1.3.0 K Hoang 16/03/2022 Add support to Portenta_H7 using built-in Ethernet or Murata WiFi (without TLS/SSL)
22+
1.4.0 K Hoang 17/03/2022 Add support to Teensy 4.1 using QNEthernet Library
23+
1.5.0 K Hoang 14/04/2022 Add support to ESP8266 W5x00/ENC28J60 using lwip_W5100/lwip_W5500 or lwip_enc28j60 library
2224
*****************************************************************************************************************************/
2325

2426
#pragma once

src/AsyncMqttClient/Flags.hpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
1010
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMqttClient_Generic
1111
12-
Version: 1.3.0
12+
Version: 1.5.0
1313
1414
Version Modified By Date Comments
1515
------- ----------- ---------- -----------
@@ -19,6 +19,8 @@
1919
1.2.0 K Hoang 15/03/2022 Add support to STM32 using LAN8742A (without TLS/SSL)
2020
1.2.1 K Hoang 16/03/2022 Add support to STM32 using LAN8720 (without TLS/SSL)
2121
1.3.0 K Hoang 16/03/2022 Add support to Portenta_H7 using built-in Ethernet or Murata WiFi (without TLS/SSL)
22+
1.4.0 K Hoang 17/03/2022 Add support to Teensy 4.1 using QNEthernet Library
23+
1.5.0 K Hoang 14/04/2022 Add support to ESP8266 W5x00/ENC28J60 using lwip_W5100/lwip_W5500 or lwip_enc28j60 library
2224
*****************************************************************************************************************************/
2325

2426
#pragma once

0 commit comments

Comments
 (0)