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)
This commit is contained in:
Ranlvor 2021-01-14 20:36:16 +01:00
parent 27a9544092
commit e6b26dbac1
Signed by untrusted user who does not match committer: Ranlvor
GPG key ID: 5E12D04750EF6F8E

View file

@ -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,