From 442e6054eb5fb9193990d2d7f17e2760633a65c8 Mon Sep 17 00:00:00 2001 From: jano42 Date: Wed, 27 Oct 2021 13:40:40 +0200 Subject: [PATCH 1/2] HttpScreen plugin : fix TFT screen management --- sources/plugins/httpScreen/TftScreen.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sources/plugins/httpScreen/TftScreen.cpp b/sources/plugins/httpScreen/TftScreen.cpp index 49829f5f56..84b43ddbac 100644 --- a/sources/plugins/httpScreen/TftScreen.cpp +++ b/sources/plugins/httpScreen/TftScreen.cpp @@ -30,11 +30,11 @@ void CTftScreen::update(const std::vector& cmds) { if (cmd.isControl()) { - m_controller->sendCommand(m_ip, "oledcmd", cmd.get()); + m_controller->sendCommand(m_ip, "TFTCMD", cmd.get()); } else { - m_controller->sendCommand(m_ip, "oled", cmd.get()); + m_controller->sendCommand(m_ip, "TFT", cmd.get()); } } } From 045fedbedbc9f95cf69b0b3f0e313ad90f67d426 Mon Sep 17 00:00:00 2001 From: jano42 Date: Wed, 27 Oct 2021 13:41:29 +0200 Subject: [PATCH 2/2] HttpScreen : update to version 1.1.1 Update changelog of httpScreen plugin and Yadoms server --- sources/plugins/httpScreen/changelog.md | 3 +++ sources/server/changelog.md | 11 +++++++++++ 2 files changed, 14 insertions(+) diff --git a/sources/plugins/httpScreen/changelog.md b/sources/plugins/httpScreen/changelog.md index b0de87f75f..26c3b5d1e3 100644 --- a/sources/plugins/httpScreen/changelog.md +++ b/sources/plugins/httpScreen/changelog.md @@ -1,3 +1,6 @@ +### 1.1.1 +* Fix commands for TFT screens + ### 1.1.0 * Fix #562 : update usage of CDataContainer for better memory optimizations diff --git a/sources/server/changelog.md b/sources/server/changelog.md index f36b8fb217..c4f8b89f0a 100644 --- a/sources/server/changelog.md +++ b/sources/server/changelog.md @@ -1,3 +1,14 @@ +### 2.5.1-beta.4 + +#### Yadoms +* Fix HTTP SCREEN plugin for TFT screens (see local changelog) + +### 2.5.1-beta.3 + +#### Yadoms +* Fix EnOcean plugin profile (see local changelog) + + ### 2.5.1-beta.2 #### Yadoms