From c4feb99e8d076c7b01b382f20ea61ff827f2d852 Mon Sep 17 00:00:00 2001 From: Dmitry Borisenko <49808844+DmitryBorisenko33@users.noreply.github.com> Date: Sat, 20 Jun 2020 21:12:57 +0200 Subject: [PATCH 1/2] Long files deleted --- data/widgets/{outstanding => }/widget.select.json | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename data/widgets/{outstanding => }/widget.select.json (100%) diff --git a/data/widgets/outstanding/widget.select.json b/data/widgets/widget.select.json similarity index 100% rename from data/widgets/outstanding/widget.select.json rename to data/widgets/widget.select.json From cffd80d1259cd89cc676fe9092d20c5c0407f5bb Mon Sep 17 00:00:00 2001 From: Dmitry Borisenko <49808844+DmitryBorisenko33@users.noreply.github.com> Date: Sat, 20 Jun 2020 21:28:56 +0200 Subject: [PATCH 2/2] Fix error --- include/Global.h | 2 ++ src/Global.cpp | 2 ++ 2 files changed, 4 insertions(+) diff --git a/include/Global.h b/include/Global.h index 9e278511..674b9a3a 100644 --- a/include/Global.h +++ b/include/Global.h @@ -48,6 +48,8 @@ extern AsyncWebSocket ws; extern TickerScheduler ts; +extern WiFiClient espClient; + extern PubSubClient client_mqtt; extern StringCommand sCmd; diff --git a/src/Global.cpp b/src/Global.cpp index f6890b2b..f72e8cb6 100644 --- a/src/Global.cpp +++ b/src/Global.cpp @@ -11,6 +11,8 @@ AsyncWebSocket ws; TickerScheduler ts(TEST + 1); +//WiFiClient espClient; + PubSubClient client_mqtt(espClient); StringCommand sCmd;