Update changelog

Update PubSubClient Mqtt library to non-blocking EspEasy version
This commit is contained in:
Theo Arends 2018-10-16 14:33:31 +02:00
parent 04493965e4
commit 2085f24675
2 changed files with 2 additions and 1 deletions

View File

@ -6,6 +6,7 @@
* Fix Sonoff Bridge RfRaw receive (#4080) * Fix Sonoff Bridge RfRaw receive (#4080)
* Add support for Tuya Dimmer (#469, #4075) * Add support for Tuya Dimmer (#469, #4075)
* Fix possible wifi connection error (#4044, #4083) * Fix possible wifi connection error (#4044, #4083)
* Update PubSubClient Mqtt library to non-blocking EspEasy version
* *
* 6.2.1.15 20181012 * 6.2.1.15 20181012
* Fix Color Temperature slider functionality regression from 6.2.1.5 (#4037) * Fix Color Temperature slider functionality regression from 6.2.1.5 (#4037)

View File

@ -219,7 +219,7 @@
/*-------------------------------------------------------------------------------------------*\ /*-------------------------------------------------------------------------------------------*\
* Select ONE of possible MQTT library types below * Select ONE of possible MQTT library types below
\*-------------------------------------------------------------------------------------------*/ \*-------------------------------------------------------------------------------------------*/
// Default MQTT driver for both non-TLS and TLS connections. Blocks network if MQTT server is unavailable. // Default MQTT driver for both non-TLS and TLS connections. Latest library version (20181016) does not block network if MQTT server is unavailable.
//#define MQTT_LIBRARY_TYPE MQTT_PUBSUBCLIENT // Use PubSubClient library //#define MQTT_LIBRARY_TYPE MQTT_PUBSUBCLIENT // Use PubSubClient library
// Alternative MQTT driver does not block network when MQTT server is unavailable. No TLS support // Alternative MQTT driver does not block network when MQTT server is unavailable. No TLS support
//#define MQTT_LIBRARY_TYPE MQTT_TASMOTAMQTT // Use TasmotaMqtt library (+4k4 (core 2.3.0), +14k4 (core 2.4.2 lwip2) code, +4k mem) - non-TLS only //#define MQTT_LIBRARY_TYPE MQTT_TASMOTAMQTT // Use TasmotaMqtt library (+4k4 (core 2.3.0), +14k4 (core 2.4.2 lwip2) code, +4k mem) - non-TLS only