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

Commit

Permalink
v1.5.0 to add support to ESP8266 W5x00/ENC28J60
Browse files Browse the repository at this point in the history
### 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`
  • Loading branch information
khoih-prog committed Apr 14, 2022
1 parent 6b024e2 commit 6a9d4e6
Show file tree
Hide file tree
Showing 53 changed files with 351 additions and 73 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Please ensure to specify the following:
Arduino IDE version: 1.8.19
ESP32 Core Version 2.0.2
OS: Ubuntu 20.04 LTS
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
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
Context:
I encountered an endless loop while trying to connect to Local WiFi.
Expand Down
212 changes: 192 additions & 20 deletions README.md

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
## Table of Contents

* [Changelog](#changelog)
* [Releases v1.5.0](#releases-v150)
* [Releases v1.4.0](#releases-v140)
* [Releases v1.3.0](#releases-v130)
* [Releases v1.2.1](#releases-v121)
Expand All @@ -24,6 +25,13 @@

## Changelog

### 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`

### Releases v1.4.0

1. Add support to **Teensy 4.1 using QNEthernet Library**
Expand Down
8 changes: 7 additions & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "AsyncMQTT_Generic",
"version": "1.4.0",
"version": "1.5.0",
"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",
"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",
"authors":
Expand Down Expand Up @@ -53,6 +53,12 @@
"version": ">=1.0.0",
"platforms": ["teensy", "avr"]
},
{
"owner": "khoih-prog",
"name": "ESPAsync_WiFiManager",
"version": ">=1.12.2",
"platforms": ["espressif32", "espressif8266"]
},
{
"owner": "khoih-prog",
"name": "WebServer_WT32_ETH01",
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=AsyncMQTT_Generic
version=1.4.0
version=1.5.0
author=Marvin ROGER,Khoi Hoang <[email protected]>
maintainer=Khoi Hoang <[email protected]>
sentence=Arduino Library for ESP8266, ESP32, Portenta_H7 and STM32 asynchronous MQTT client implementation
Expand Down
2 changes: 2 additions & 0 deletions platformio/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ lib_deps =
; Teensy41_AsyncTCP@>=1.0.0
; LittleFS_esp32@>=1.0.6
; WebServer_WT32_ETH01@>=1.4.1
; AsyncTCP_SSL@>=1.2.0

; PlatformIO 5.x
me-no-dev/AsyncTCP@>=1.1.1
Expand All @@ -66,6 +67,7 @@ lib_deps =
khoih-prog/Teensy41_AsyncTCP@>=1.0.0
lorol/LittleFS_esp32@>=1.0.6
khoih-prog/WebServer_WT32_ETH01@>=1.4.1
khoih-prog/AsyncTCP_SSL@>=1.2.0

build_flags =
; set your debug output (default=Serial)
Expand Down
4 changes: 3 additions & 1 deletion src/AsyncMqttClient/Callbacks.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMqttClient_Generic
Version: 1.3.0
Version: 1.5.0
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -19,6 +19,8 @@
1.2.0 K Hoang 15/03/2022 Add support to STM32 using LAN8742A (without TLS/SSL)
1.2.1 K Hoang 16/03/2022 Add support to STM32 using LAN8720 (without TLS/SSL)
1.3.0 K Hoang 16/03/2022 Add support to Portenta_H7 using built-in Ethernet or Murata WiFi (without TLS/SSL)
1.4.0 K Hoang 17/03/2022 Add support to Teensy 4.1 using QNEthernet Library
1.5.0 K Hoang 14/04/2022 Add support to ESP8266 W5x00/ENC28J60 using lwip_W5100/lwip_W5500 or lwip_enc28j60 library
*****************************************************************************************************************************/

#pragma once
Expand Down
4 changes: 3 additions & 1 deletion src/AsyncMqttClient/DisconnectReasons.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMqttClient_Generic
Version: 1.3.0
Version: 1.5.0
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -19,6 +19,8 @@
1.2.0 K Hoang 15/03/2022 Add support to STM32 using LAN8742A (without TLS/SSL)
1.2.1 K Hoang 16/03/2022 Add support to STM32 using LAN8720 (without TLS/SSL)
1.3.0 K Hoang 16/03/2022 Add support to Portenta_H7 using built-in Ethernet or Murata WiFi (without TLS/SSL)
1.4.0 K Hoang 17/03/2022 Add support to Teensy 4.1 using QNEthernet Library
1.5.0 K Hoang 14/04/2022 Add support to ESP8266 W5x00/ENC28J60 using lwip_W5100/lwip_W5500 or lwip_enc28j60 library
*****************************************************************************************************************************/

#pragma once
Expand Down
4 changes: 3 additions & 1 deletion src/AsyncMqttClient/Errors.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMqttClient_Generic
Version: 1.3.0
Version: 1.5.0
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -19,6 +19,8 @@
1.2.0 K Hoang 15/03/2022 Add support to STM32 using LAN8742A (without TLS/SSL)
1.2.1 K Hoang 16/03/2022 Add support to STM32 using LAN8720 (without TLS/SSL)
1.3.0 K Hoang 16/03/2022 Add support to Portenta_H7 using built-in Ethernet or Murata WiFi (without TLS/SSL)
1.4.0 K Hoang 17/03/2022 Add support to Teensy 4.1 using QNEthernet Library
1.5.0 K Hoang 14/04/2022 Add support to ESP8266 W5x00/ENC28J60 using lwip_W5100/lwip_W5500 or lwip_enc28j60 library
*****************************************************************************************************************************/

#pragma once
Expand Down
4 changes: 3 additions & 1 deletion src/AsyncMqttClient/Flags.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMqttClient_Generic
Version: 1.3.0
Version: 1.5.0
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -19,6 +19,8 @@
1.2.0 K Hoang 15/03/2022 Add support to STM32 using LAN8742A (without TLS/SSL)
1.2.1 K Hoang 16/03/2022 Add support to STM32 using LAN8720 (without TLS/SSL)
1.3.0 K Hoang 16/03/2022 Add support to Portenta_H7 using built-in Ethernet or Murata WiFi (without TLS/SSL)
1.4.0 K Hoang 17/03/2022 Add support to Teensy 4.1 using QNEthernet Library
1.5.0 K Hoang 14/04/2022 Add support to ESP8266 W5x00/ENC28J60 using lwip_W5100/lwip_W5500 or lwip_enc28j60 library
*****************************************************************************************************************************/

#pragma once
Expand Down
4 changes: 3 additions & 1 deletion src/AsyncMqttClient/Helpers.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMqttClient_Generic
Version: 1.3.0
Version: 1.5.0
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -19,6 +19,8 @@
1.2.0 K Hoang 15/03/2022 Add support to STM32 using LAN8742A (without TLS/SSL)
1.2.1 K Hoang 16/03/2022 Add support to STM32 using LAN8720 (without TLS/SSL)
1.3.0 K Hoang 16/03/2022 Add support to Portenta_H7 using built-in Ethernet or Murata WiFi (without TLS/SSL)
1.4.0 K Hoang 17/03/2022 Add support to Teensy 4.1 using QNEthernet Library
1.5.0 K Hoang 14/04/2022 Add support to ESP8266 W5x00/ENC28J60 using lwip_W5100/lwip_W5500 or lwip_enc28j60 library
*****************************************************************************************************************************/

#pragma once
Expand Down
4 changes: 3 additions & 1 deletion src/AsyncMqttClient/MessageProperties.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMqttClient_Generic
Version: 1.3.0
Version: 1.5.0
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -19,6 +19,8 @@
1.2.0 K Hoang 15/03/2022 Add support to STM32 using LAN8742A (without TLS/SSL)
1.2.1 K Hoang 16/03/2022 Add support to STM32 using LAN8720 (without TLS/SSL)
1.3.0 K Hoang 16/03/2022 Add support to Portenta_H7 using built-in Ethernet or Murata WiFi (without TLS/SSL)
1.4.0 K Hoang 17/03/2022 Add support to Teensy 4.1 using QNEthernet Library
1.5.0 K Hoang 14/04/2022 Add support to ESP8266 W5x00/ENC28J60 using lwip_W5100/lwip_W5500 or lwip_enc28j60 library
*****************************************************************************************************************************/

#pragma once
Expand Down
4 changes: 3 additions & 1 deletion src/AsyncMqttClient/Packets/ConnAckPacket.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMqttClient_Generic
Version: 1.3.0
Version: 1.5.0
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -19,6 +19,8 @@
1.2.0 K Hoang 15/03/2022 Add support to STM32 using LAN8742A (without TLS/SSL)
1.2.1 K Hoang 16/03/2022 Add support to STM32 using LAN8720 (without TLS/SSL)
1.3.0 K Hoang 16/03/2022 Add support to Portenta_H7 using built-in Ethernet or Murata WiFi (without TLS/SSL)
1.4.0 K Hoang 17/03/2022 Add support to Teensy 4.1 using QNEthernet Library
1.5.0 K Hoang 14/04/2022 Add support to ESP8266 W5x00/ENC28J60 using lwip_W5100/lwip_W5500 or lwip_enc28j60 library
*****************************************************************************************************************************/

#include "ConnAckPacket.hpp"
Expand Down
4 changes: 3 additions & 1 deletion src/AsyncMqttClient/Packets/ConnAckPacket.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMqttClient_Generic
Version: 1.3.0
Version: 1.5.0
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -19,6 +19,8 @@
1.2.0 K Hoang 15/03/2022 Add support to STM32 using LAN8742A (without TLS/SSL)
1.2.1 K Hoang 16/03/2022 Add support to STM32 using LAN8720 (without TLS/SSL)
1.3.0 K Hoang 16/03/2022 Add support to Portenta_H7 using built-in Ethernet or Murata WiFi (without TLS/SSL)
1.4.0 K Hoang 17/03/2022 Add support to Teensy 4.1 using QNEthernet Library
1.5.0 K Hoang 14/04/2022 Add support to ESP8266 W5x00/ENC28J60 using lwip_W5100/lwip_W5500 or lwip_enc28j60 library
*****************************************************************************************************************************/

#pragma once
Expand Down
4 changes: 3 additions & 1 deletion src/AsyncMqttClient/Packets/Out/Connect.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMqttClient_Generic
Version: 1.3.0
Version: 1.5.0
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -19,6 +19,8 @@
1.2.0 K Hoang 15/03/2022 Add support to STM32 using LAN8742A (without TLS/SSL)
1.2.1 K Hoang 16/03/2022 Add support to STM32 using LAN8720 (without TLS/SSL)
1.3.0 K Hoang 16/03/2022 Add support to Portenta_H7 using built-in Ethernet or Murata WiFi (without TLS/SSL)
1.4.0 K Hoang 17/03/2022 Add support to Teensy 4.1 using QNEthernet Library
1.5.0 K Hoang 14/04/2022 Add support to ESP8266 W5x00/ENC28J60 using lwip_W5100/lwip_W5500 or lwip_enc28j60 library
*****************************************************************************************************************************/

#include "Connect.hpp"
Expand Down
4 changes: 3 additions & 1 deletion src/AsyncMqttClient/Packets/Out/Connect.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMqttClient_Generic
Version: 1.3.0
Version: 1.5.0
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -19,6 +19,8 @@
1.2.0 K Hoang 15/03/2022 Add support to STM32 using LAN8742A (without TLS/SSL)
1.2.1 K Hoang 16/03/2022 Add support to STM32 using LAN8720 (without TLS/SSL)
1.3.0 K Hoang 16/03/2022 Add support to Portenta_H7 using built-in Ethernet or Murata WiFi (without TLS/SSL)
1.4.0 K Hoang 17/03/2022 Add support to Teensy 4.1 using QNEthernet Library
1.5.0 K Hoang 14/04/2022 Add support to ESP8266 W5x00/ENC28J60 using lwip_W5100/lwip_W5500 or lwip_enc28j60 library
*****************************************************************************************************************************/

#pragma once
Expand Down
4 changes: 3 additions & 1 deletion src/AsyncMqttClient/Packets/Out/Disconn.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMqttClient_Generic
Version: 1.3.0
Version: 1.5.0
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -19,6 +19,8 @@
1.2.0 K Hoang 15/03/2022 Add support to STM32 using LAN8742A (without TLS/SSL)
1.2.1 K Hoang 16/03/2022 Add support to STM32 using LAN8720 (without TLS/SSL)
1.3.0 K Hoang 16/03/2022 Add support to Portenta_H7 using built-in Ethernet or Murata WiFi (without TLS/SSL)
1.4.0 K Hoang 17/03/2022 Add support to Teensy 4.1 using QNEthernet Library
1.5.0 K Hoang 14/04/2022 Add support to ESP8266 W5x00/ENC28J60 using lwip_W5100/lwip_W5500 or lwip_enc28j60 library
*****************************************************************************************************************************/

#include "Disconn.hpp"
Expand Down
4 changes: 3 additions & 1 deletion src/AsyncMqttClient/Packets/Out/Disconn.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMqttClient_Generic
Version: 1.3.0
Version: 1.5.0
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -19,6 +19,8 @@
1.2.0 K Hoang 15/03/2022 Add support to STM32 using LAN8742A (without TLS/SSL)
1.2.1 K Hoang 16/03/2022 Add support to STM32 using LAN8720 (without TLS/SSL)
1.3.0 K Hoang 16/03/2022 Add support to Portenta_H7 using built-in Ethernet or Murata WiFi (without TLS/SSL)
1.4.0 K Hoang 17/03/2022 Add support to Teensy 4.1 using QNEthernet Library
1.5.0 K Hoang 14/04/2022 Add support to ESP8266 W5x00/ENC28J60 using lwip_W5100/lwip_W5500 or lwip_enc28j60 library
*****************************************************************************************************************************/

#pragma once
Expand Down
4 changes: 3 additions & 1 deletion src/AsyncMqttClient/Packets/Out/OutPacket.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMqttClient_Generic
Version: 1.3.0
Version: 1.5.0
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -19,6 +19,8 @@
1.2.0 K Hoang 15/03/2022 Add support to STM32 using LAN8742A (without TLS/SSL)
1.2.1 K Hoang 16/03/2022 Add support to STM32 using LAN8720 (without TLS/SSL)
1.3.0 K Hoang 16/03/2022 Add support to Portenta_H7 using built-in Ethernet or Murata WiFi (without TLS/SSL)
1.4.0 K Hoang 17/03/2022 Add support to Teensy 4.1 using QNEthernet Library
1.5.0 K Hoang 14/04/2022 Add support to ESP8266 W5x00/ENC28J60 using lwip_W5100/lwip_W5500 or lwip_enc28j60 library
*****************************************************************************************************************************/

#include "OutPacket.hpp"
Expand Down
4 changes: 3 additions & 1 deletion src/AsyncMqttClient/Packets/Out/OutPacket.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMqttClient_Generic
Version: 1.3.0
Version: 1.5.0
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -19,6 +19,8 @@
1.2.0 K Hoang 15/03/2022 Add support to STM32 using LAN8742A (without TLS/SSL)
1.2.1 K Hoang 16/03/2022 Add support to STM32 using LAN8720 (without TLS/SSL)
1.3.0 K Hoang 16/03/2022 Add support to Portenta_H7 using built-in Ethernet or Murata WiFi (without TLS/SSL)
1.4.0 K Hoang 17/03/2022 Add support to Teensy 4.1 using QNEthernet Library
1.5.0 K Hoang 14/04/2022 Add support to ESP8266 W5x00/ENC28J60 using lwip_W5100/lwip_W5500 or lwip_enc28j60 library
*****************************************************************************************************************************/

#pragma once
Expand Down
4 changes: 3 additions & 1 deletion src/AsyncMqttClient/Packets/Out/PingReq.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMqttClient_Generic
Version: 1.3.0
Version: 1.5.0
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -19,6 +19,8 @@
1.2.0 K Hoang 15/03/2022 Add support to STM32 using LAN8742A (without TLS/SSL)
1.2.1 K Hoang 16/03/2022 Add support to STM32 using LAN8720 (without TLS/SSL)
1.3.0 K Hoang 16/03/2022 Add support to Portenta_H7 using built-in Ethernet or Murata WiFi (without TLS/SSL)
1.4.0 K Hoang 17/03/2022 Add support to Teensy 4.1 using QNEthernet Library
1.5.0 K Hoang 14/04/2022 Add support to ESP8266 W5x00/ENC28J60 using lwip_W5100/lwip_W5500 or lwip_enc28j60 library
*****************************************************************************************************************************/

#include "PingReq.hpp"
Expand Down
4 changes: 3 additions & 1 deletion src/AsyncMqttClient/Packets/Out/PingReq.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMqttClient_Generic
Version: 1.3.0
Version: 1.5.0
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -19,6 +19,8 @@
1.2.0 K Hoang 15/03/2022 Add support to STM32 using LAN8742A (without TLS/SSL)
1.2.1 K Hoang 16/03/2022 Add support to STM32 using LAN8720 (without TLS/SSL)
1.3.0 K Hoang 16/03/2022 Add support to Portenta_H7 using built-in Ethernet or Murata WiFi (without TLS/SSL)
1.4.0 K Hoang 17/03/2022 Add support to Teensy 4.1 using QNEthernet Library
1.5.0 K Hoang 14/04/2022 Add support to ESP8266 W5x00/ENC28J60 using lwip_W5100/lwip_W5500 or lwip_enc28j60 library
*****************************************************************************************************************************/

#pragma once
Expand Down
4 changes: 3 additions & 1 deletion src/AsyncMqttClient/Packets/Out/PubAck.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMqttClient_Generic
Version: 1.3.0
Version: 1.5.0
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -19,6 +19,8 @@
1.2.0 K Hoang 15/03/2022 Add support to STM32 using LAN8742A (without TLS/SSL)
1.2.1 K Hoang 16/03/2022 Add support to STM32 using LAN8720 (without TLS/SSL)
1.3.0 K Hoang 16/03/2022 Add support to Portenta_H7 using built-in Ethernet or Murata WiFi (without TLS/SSL)
1.4.0 K Hoang 17/03/2022 Add support to Teensy 4.1 using QNEthernet Library
1.5.0 K Hoang 14/04/2022 Add support to ESP8266 W5x00/ENC28J60 using lwip_W5100/lwip_W5500 or lwip_enc28j60 library
*****************************************************************************************************************************/

#include "PubAck.hpp"
Expand Down
4 changes: 3 additions & 1 deletion src/AsyncMqttClient/Packets/Out/PubAck.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMqttClient_Generic
Version: 1.3.0
Version: 1.5.0
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -19,6 +19,8 @@
1.2.0 K Hoang 15/03/2022 Add support to STM32 using LAN8742A (without TLS/SSL)
1.2.1 K Hoang 16/03/2022 Add support to STM32 using LAN8720 (without TLS/SSL)
1.3.0 K Hoang 16/03/2022 Add support to Portenta_H7 using built-in Ethernet or Murata WiFi (without TLS/SSL)
1.4.0 K Hoang 17/03/2022 Add support to Teensy 4.1 using QNEthernet Library
1.5.0 K Hoang 14/04/2022 Add support to ESP8266 W5x00/ENC28J60 using lwip_W5100/lwip_W5500 or lwip_enc28j60 library
*****************************************************************************************************************************/

#pragma once
Expand Down
Loading

0 comments on commit 6a9d4e6

Please sign in to comment.