Master Bedroom AC now uses eco mode until someone is actually sleeping
This commit is contained in:
Submodule node-red/projects/NerdFlows updated: d85f662da8...2d1b77e899
@ -82,6 +82,9 @@ script:
|
|||||||
alias: 'Master Bedroom Wakeup'
|
alias: 'Master Bedroom Wakeup'
|
||||||
mode: restart
|
mode: restart
|
||||||
sequence:
|
sequence:
|
||||||
|
- service: button.press
|
||||||
|
target:
|
||||||
|
entity_id: button.master_bedroom_day_mode
|
||||||
- service: switch.turn_off
|
- service: switch.turn_off
|
||||||
target:
|
target:
|
||||||
entity_id: switch.master_bedroom_echo_dot_do_not_disturb_switch
|
entity_id: switch.master_bedroom_echo_dot_do_not_disturb_switch
|
||||||
@ -112,6 +115,16 @@ script:
|
|||||||
alias: 'Master Bedroom Sleep'
|
alias: 'Master Bedroom Sleep'
|
||||||
mode: restart
|
mode: restart
|
||||||
sequence:
|
sequence:
|
||||||
|
- if:
|
||||||
|
- condition: state
|
||||||
|
entity_id: climate.master_bedroom_aircon
|
||||||
|
state: 'cool'
|
||||||
|
then:
|
||||||
|
- service: climate.set_preset_mode
|
||||||
|
target:
|
||||||
|
entity_id: climate.master_bedroom_aircon
|
||||||
|
data:
|
||||||
|
preset_mode: 'none'
|
||||||
- wait_template: "{{ is_state('light.master_bedroom_lights','off') }}"
|
- wait_template: "{{ is_state('light.master_bedroom_lights','off') }}"
|
||||||
timeout:
|
timeout:
|
||||||
minutes: 1
|
minutes: 1
|
||||||
|
Reference in New Issue
Block a user