hass heater meshup
This commit is contained in:
parent
5b2062f912
commit
bbe89f56fc
1 changed files with 13 additions and 2 deletions
|
@ -66,8 +66,8 @@ in {
|
||||||
input_boolean.windows_up.icon = "mdi:toggle-switch";
|
input_boolean.windows_up.icon = "mdi:toggle-switch";
|
||||||
|
|
||||||
# heater scenes
|
# heater scenes
|
||||||
input_select.heater_state.options = [ "off" "on1" "on2" ];
|
input_select.heater_state.options = [ "off" "on1" "on2" "on3" ];
|
||||||
input_select.heater_state_memory.options = [ "off" "on1" "on2" ];
|
input_select.heater_state_memory.options = [ "off" "on1" "on2" "on3" ];
|
||||||
|
|
||||||
automation = [
|
automation = [
|
||||||
|
|
||||||
|
@ -474,6 +474,17 @@ in {
|
||||||
(heater_on "heater4" cold) # storage room
|
(heater_on "heater4" cold) # storage room
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
heater_on3 = {
|
||||||
|
sequence = [
|
||||||
|
(heater_on "heater1" cold) # office
|
||||||
|
{ delay = delay; }
|
||||||
|
(heater_on "heater2" cold) # office
|
||||||
|
{ delay = delay; }
|
||||||
|
(heater_on "heater3" hot) # bed room
|
||||||
|
{ delay = delay; }
|
||||||
|
(heater_on "heater4" cold) # storage room
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
fyrtur_up = {
|
fyrtur_up = {
|
||||||
sequence = [
|
sequence = [
|
||||||
|
|
Loading…
Reference in a new issue