From 2085f24675f440cc56bc5afbc0e16d679ffd1972 Mon Sep 17 00:00:00 2001 From: Theo Arends <11044339+arendst@users.noreply.github.com> Date: Tue, 16 Oct 2018 14:33:31 +0200 Subject: [PATCH] Update changelog Update PubSubClient Mqtt library to non-blocking EspEasy version --- sonoff/_changelog.ino | 1 + sonoff/user_config.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/sonoff/_changelog.ino b/sonoff/_changelog.ino index e383c041d..0feb0a38d 100644 --- a/sonoff/_changelog.ino +++ b/sonoff/_changelog.ino @@ -6,6 +6,7 @@ * Fix Sonoff Bridge RfRaw receive (#4080) * Add support for Tuya Dimmer (#469, #4075) * Fix possible wifi connection error (#4044, #4083) + * Update PubSubClient Mqtt library to non-blocking EspEasy version * * 6.2.1.15 20181012 * Fix Color Temperature slider functionality regression from 6.2.1.5 (#4037) diff --git a/sonoff/user_config.h b/sonoff/user_config.h index 740027277..1cd393017 100644 --- a/sonoff/user_config.h +++ b/sonoff/user_config.h @@ -219,7 +219,7 @@ /*-------------------------------------------------------------------------------------------*\ * 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 // 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