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:
parent
27a9544092
commit
e6b26dbac1
1 changed files with 8 additions and 0 deletions
|
|
@ -300,6 +300,8 @@ const config: Config = {
|
||||||
"temperature-control/office_heating/target", 21.5),
|
"temperature-control/office_heating/target", 21.5),
|
||||||
...topicHomeBoolean("heaterOfficeAuto",
|
...topicHomeBoolean("heaterOfficeAuto",
|
||||||
"temperature-control/office_heating"),
|
"temperature-control/office_heating"),
|
||||||
|
...topicHomeBoolean("heaterOfficeSelfControl",
|
||||||
|
"temperature-control/office_heating/self_control"),
|
||||||
|
|
||||||
...topicHomeBoolean("livingroomKodiControlled",
|
...topicHomeBoolean("livingroomKodiControlled",
|
||||||
"bulb/livingroom/kodi-controlled"),
|
"bulb/livingroom/kodi-controlled"),
|
||||||
|
|
@ -534,6 +536,12 @@ const config: Config = {
|
||||||
text: "Nachtabsekung",
|
text: "Nachtabsekung",
|
||||||
icon: svg(icons.mdiWeatherNight)
|
icon: svg(icons.mdiWeatherNight)
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
type: "toggle",
|
||||||
|
topic: "heaterOfficeSelfControl",
|
||||||
|
text: "Run control on valve",
|
||||||
|
icon: svg(icons.mdiRadiator)
|
||||||
|
},
|
||||||
{
|
{
|
||||||
type: "slider",
|
type: "slider",
|
||||||
min: 15,
|
min: 15,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue