From e6b26dbac14d47bcc2c209b91de579c7e1598925 Mon Sep 17 00:00:00 2001 From: Ranlvor Date: Thu, 14 Jan 2021 20:36:16 +0100 Subject: [PATCH] Add switch for office_heating/self_control This switch decides if the control algorithm for the office temperature runs inside of home-rust or in the heating valve itself. Former guarentees 100% open/close to avoid noise, later is way better (states like partial open, lower latency, lower temperature-shootovers and shootunders, etc, etc) --- config/uwap-home/index.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/config/uwap-home/index.js b/config/uwap-home/index.js index de140bf..3354f30 100644 --- a/config/uwap-home/index.js +++ b/config/uwap-home/index.js @@ -300,6 +300,8 @@ const config: Config = { "temperature-control/office_heating/target", 21.5), ...topicHomeBoolean("heaterOfficeAuto", "temperature-control/office_heating"), + ...topicHomeBoolean("heaterOfficeSelfControl", + "temperature-control/office_heating/self_control"), ...topicHomeBoolean("livingroomKodiControlled", "bulb/livingroom/kodi-controlled"), @@ -534,6 +536,12 @@ const config: Config = { text: "Nachtabsekung", icon: svg(icons.mdiWeatherNight) }, + { + type: "toggle", + topic: "heaterOfficeSelfControl", + text: "Run control on valve", + icon: svg(icons.mdiRadiator) + }, { type: "slider", min: 15,