|
1 | 1 | /****************************************************************************************************************************
|
2 | 2 | AsyncMQTT_ESP32.hpp
|
3 | 3 |
|
4 |
| - AsyncMQTT_ESP32 is a library for ESP32 boards using WiFi or LwIP W5500, LAN8720 or ENC28J60 |
| 4 | + AsyncMQTT_ESP32 is a library for ESP32 boards using WiFi or LwIP W5500 / W6100 / ENC28J60 / LAN8720 Ethernet |
5 | 5 |
|
6 | 6 | Based on and modified from :
|
7 | 7 |
|
8 | 8 | 1) async-mqtt-client (https://github.com/marvinroger/async-mqtt-client)
|
9 |
| - 2) async-mqtt-client (https://github.com/khoih-prog/AsyncMQTT_Generic) |
| 9 | + 2) AsyncMQTT_Generic (https://github.com/khoih-prog/AsyncMQTT_Generic) |
10 | 10 |
|
11 | 11 | Built by Khoi Hoang https://github.com/khoih-prog/AsyncMQTT_ESP32
|
12 | 12 |
|
13 |
| - Version: 1.9.0 |
| 13 | + Version: 1.10.0 |
14 | 14 |
|
15 | 15 | Version Modified By Date Comments
|
16 | 16 | ------- ----------- ---------- -----------
|
17 | 17 | 1.8.0 K Hoang 17/12/2022 Initial coding to port to ESP32 boards using WiFi or LwIP W5500, LAN8720 or ENC28J60
|
18 | 18 | 1.9.0 K Hoang 21/12/2022 Add support to ESP32S2/C3 boards using LwIP W5500 or ENC28J60 Ethernet
|
| 19 | + 1.10.0 K Hoang 09/01/2023 Add support to ESP32 and ESP32S2/S3/C3 boards using LwIP W6100 |
19 | 20 | *****************************************************************************************************************************/
|
20 | 21 |
|
21 | 22 | #pragma once
|
|
34 | 35 |
|
35 | 36 | /////////////////////////////////////////////////////////
|
36 | 37 |
|
37 |
| -#define ASYNC_MQTT_ESP32_SHORT_VERSION "AsyncMQTT_ESP32 v1.9.0" |
| 38 | +#define ASYNC_MQTT_ESP32_SHORT_VERSION "AsyncMQTT_ESP32 v1.10.0" |
38 | 39 |
|
39 | 40 | /////////////////////////////////////////////////////////
|
40 | 41 |
|
41 | 42 | #define ASYNC_MQTT_ESP32_VERSION_MAJOR 1
|
42 |
| -#define ASYNC_MQTT_ESP32_VERSION_MINOR 9 |
| 43 | +#define ASYNC_MQTT_ESP32_VERSION_MINOR 10 |
43 | 44 | #define ASYNC_MQTT_ESP32_VERSION_PATCH 0
|
44 | 45 |
|
45 |
| -#define ASYNC_MQTT_ESP32_VERSION_INT 1009000 |
| 46 | +#define ASYNC_MQTT_ESP32_VERSION_INT 1010000 |
46 | 47 |
|
47 | 48 | /////////////////////////////////////////////////////////
|
48 | 49 |
|
|
0 commit comments