From 6662d07c2de15e2007c813a94f2e0a1d001dafca Mon Sep 17 00:00:00 2001 From: fvanroie <15969459+fvanroie@users.noreply.github.com> Date: Thu, 6 May 2021 17:57:45 +0200 Subject: [PATCH] Update ArduinoJson and TFT_eSPI --- platformio.ini | 4 ++-- src/hasp/hasp_dispatch.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/platformio.ini b/platformio.ini index 04ca7d15..56c7f526 100644 --- a/platformio.ini +++ b/platformio.ini @@ -68,14 +68,14 @@ build_flags = ; Warning : don't put comments after github links => causes infinite download loop lib_deps = bxparks/AceButton@^1.8.3 ; GPIO button library - bblanchon/ArduinoJson@^6.17.3 ; Json(l) parser + bblanchon/ArduinoJson@^6.18.0 ; Json(l) parser bblanchon/StreamUtils@1.6.0 ; for EEPromStream knolleary/PubSubClient@^2.8.0 ; MQTT client git+https://github.com/fvanroie/ConsoleInput.git ;git+https://github.com/andrethomas/TasmotaSlave.git ;git+https://github.com/lvgl/lvgl.git lvgl/lvgl@^7.11.0 ; from PIO library - bodmer/TFT_eSPI@^2.3.66 + bodmer/TFT_eSPI@^2.3.67 ;git+https://github.com/Bodmer/TFT_eSPI.git ; ------ Unused / Test libraries ;https://github.com/netwizeBE/TFT_eSPI.git diff --git a/src/hasp/hasp_dispatch.cpp b/src/hasp/hasp_dispatch.cpp index 7c7d83fc..33db5ee7 100644 --- a/src/hasp/hasp_dispatch.cpp +++ b/src/hasp/hasp_dispatch.cpp @@ -536,8 +536,8 @@ void dispatch_parse_json(const char*, const char* payload) } else if(json.is()) { // handle json as a single command dispatch_text_line(json.as()); - } else if(json.is()) { // handle json as a single command - dispatch_text_line(json.as()); + // } else if(json.is()) { // handle json as a single command + // dispatch_text_line(json.as()); } else { LOG_WARNING(TAG_MSGR, F(D_DISPATCH_COMMAND_NOT_FOUND), payload);