1
0

Move bathroom lights automation logic to scripts

This commit is contained in:
Przemek Grondek 2021-11-12 03:30:51 +01:00
parent 0524519a2b
commit 207b269227
6 changed files with 197 additions and 187 deletions

View File

@ -1,76 +0,0 @@
- id: button-bathroom-on-off
alias: '[Bathroom] Button On/Off'
trigger:
- device_id: 0c23a8e92f43f628e584dc1805c6915e
domain: zha
platform: device
type: remote_button_short_press
subtype: turn_on
action:
- choose:
- conditions:
- condition: state
entity_id: light.bathroom_lights
state: 'on'
sequence:
- service: light.turn_off
entity_id: light.bathroom_lights
- service: light.turn_off
entity_id: light.bathroom_mirror_lights
- service: light.turn_off
entity_id: light.shower_lights
- service: light.turn_off
entity_id: light.bathroom_color_zha_group_0x0007
- service: media_player.turn_off
entity_id: media_player.bathroom_speaker
- conditions:
- condition: state
entity_id: light.bathroom_lights
state: 'off'
sequence:
- choose:
- conditions:
- condition: state
entity_id: input_select.home_mode
state: Day
sequence:
- choose:
- conditions:
- condition: state
entity_id: input_boolean.sleep_mode
state: 'on'
sequence:
- service: light.turn_on
entity_id: light.bathroom_lights
data:
brightness: 255
- service: light.turn_on
entity_id: light.bathroom_lights
data:
kelvin: 2000
- conditions:
- condition: state
entity_id: input_boolean.sleep_mode
state: 'off'
sequence:
- service: light.turn_on
entity_id: light.bathroom_lights
data:
kelvin: 3200
- service: light.turn_on
entity_id: light.bathroom_lights
data:
brightness: 255
- conditions:
- condition: state
entity_id: input_select.home_mode
state: Night
sequence:
- service: light.turn_on
entity_id: light.bathroom_color_zha_group_0x0007
data:
brightness_pct: 5
hs_color:
- 360
- 100
mode: single

View File

@ -8,51 +8,7 @@
entity_id: binary_sensor.bathroom_door_open_close entity_id: binary_sensor.bathroom_door_open_close
to: 'on' to: 'on'
action: action:
- choose: - service: script.bathroom_lights_on
- conditions:
- condition: state
entity_id: input_select.home_mode
state: Day
sequence:
- choose:
- conditions:
- condition: state
entity_id: input_boolean.sleep_mode
state: 'on'
sequence:
- service: light.turn_on
entity_id: light.bathroom_lights
data:
brightness: 255
- service: light.turn_on
entity_id: light.bathroom_lights
data:
kelvin: 2000
- conditions:
- condition: state
entity_id: input_boolean.sleep_mode
state: 'off'
sequence:
- service: light.turn_on
entity_id: light.bathroom_lights
data:
brightness: 255
- service: light.turn_on
entity_id: light.bathroom_lights
data:
kelvin: 3200
- conditions:
- condition: state
entity_id: input_select.home_mode
state: Night
sequence:
- service: light.turn_on
entity_id: light.bathroom_color_zha_group_0x0007
data:
brightness_pct: 5
hs_color:
- 360
- 100
mode: single mode: single
- id: bathroom-lights-off - id: bathroom-lights-off
@ -79,11 +35,16 @@
for: '0:02:00' for: '0:02:00'
state: 'off' state: 'off'
action: action:
- service: light.turn_off - service: script.bathroom_lights_off
entity_id: light.bathroom_lights
- service: light.turn_off - id: button-bathroom-on-off
entity_id: light.bathroom_mirror_lights alias: '[Bathroom] Button On/Off'
- service: light.turn_off trigger:
entity_id: light.shower_lights - device_id: 0c23a8e92f43f628e584dc1805c6915e
- service: light.turn_off domain: zha
entity_id: light.bathroom_color_zha_group_0x0007 platform: device
type: remote_button_short_press
subtype: turn_on
action:
- service: script.bathroom_lights_toggle
mode: single

View File

@ -21,38 +21,5 @@
type: remote_button_short_press type: remote_button_short_press
subtype: turn_off subtype: turn_off
action: action:
- choose: - service: script.bathroom_mirror_lights_toggle
- conditions:
- condition: state
entity_id: light.bathroom_mirror_lights
state: 'on'
sequence:
- service: light.turn_off
entity_id: light.bathroom_mirror_lights
- conditions:
- condition: state
entity_id: light.bathroom_mirror_lights
state: 'off'
sequence:
- choose:
- conditions:
- condition: state
entity_id: input_boolean.sleep_mode
state: 'on'
sequence:
- service: light.turn_on
entity_id: light.bathroom_mirror_lights
data:
brightness_pct: 100
kelvin: 2000
- conditions:
- condition: state
entity_id: input_boolean.sleep_mode
state: 'off'
sequence:
- service: light.turn_on
entity_id: light.bathroom_mirror_lights
data:
brightness_pct: 100
kelvin: 3200
mode: single mode: single

View File

@ -45,5 +45,5 @@
entity_id: binary_sensor.bathroom_motion_occupancy entity_id: binary_sensor.bathroom_motion_occupancy
state: 'off' state: 'off'
action: action:
- service: media_player.turn_off - service: media_player.media_pause
entity_id: media_player.bathroom_speaker entity_id: media_player.bathroom_speaker

View File

@ -7,27 +7,7 @@
from: 'off' from: 'off'
to: 'on' to: 'on'
action: action:
- choose: - service: script.bathroom_shower_lights_on
- conditions:
- condition: state
entity_id: input_boolean.sleep_mode
state: 'on'
sequence:
- service: light.turn_on
entity_id: light.shower_lights
data:
brightness_pct: 100
kelvin: 2000
- conditions:
- condition: state
entity_id: input_boolean.sleep_mode
state: 'off'
sequence:
- service: light.turn_on
entity_id: light.shower_lights
data:
brightness_pct: 100
kelvin: 3200
- id: bathroom-shower-motion-off - id: bathroom-shower-motion-off
alias: '[Bathroom] Shower Motion Off' alias: '[Bathroom] Shower Motion Off'
@ -49,5 +29,4 @@
for: '0:02:00' for: '0:02:00'
state: 'off' state: 'off'
action: action:
- service: light.turn_off - service: script.bathroom_shower_lights_off
entity_id: light.shower_lights

View File

@ -0,0 +1,179 @@
bathroom_lights_toggle:
alias: '[Bathroom] Lights toggle'
sequence:
- choose:
- conditions:
- condition: state
entity_id: light.bathroom_lights
state: 'on'
sequence:
- service: script.bathroom_lights_off
- conditions:
- condition: state
entity_id: light.bathroom_lights
state: 'off'
sequence:
- service: script.bathroom_lights_on
bathroom_lights_on:
alias: '[Bathroom] Lights on'
sequence:
- choose:
- conditions:
- condition: state
entity_id: input_select.home_mode
state: Day
sequence:
- choose:
- conditions:
- condition: state
entity_id: input_boolean.sleep_mode
state: 'on'
sequence:
- service: light.turn_on
entity_id: light.bathroom_lights
data:
brightness: 255
- service: light.turn_on
entity_id: light.bathroom_lights
data:
kelvin: 2000
- conditions:
- condition: state
entity_id: input_boolean.sleep_mode
state: 'off'
sequence:
- service: light.turn_on
entity_id: light.bathroom_lights
data:
kelvin: 3200
- service: light.turn_on
entity_id: light.bathroom_lights
data:
brightness: 255
- conditions:
- condition: state
entity_id: input_select.home_mode
state: Night
sequence:
- service: light.turn_on
entity_id: light.bathroom_color_zha_group_0x0007
data:
brightness_pct: 5
hs_color:
- 360
- 100
bathroom_lights_off:
alias: '[Bathroom] Lights off'
sequence:
- service: light.turn_off
entity_id: light.bathroom_lights
- service: light.turn_off
entity_id: light.bathroom_mirror_lights
- service: light.turn_off
entity_id: light.shower_lights
- service: light.turn_off
entity_id: light.bathroom_color_zha_group_0x0007
- service: media_player.media_pause
entity_id: media_player.bathroom_speaker
bathroom_mirror_lights_toggle:
alias: '[Bathroom] Mirror lights toggle'
sequence:
- choose:
- conditions:
- condition: state
entity_id: light.bathroom_mirror_lights
state: 'on'
sequence:
- service: script.bathroom_mirror_lights_off
- conditions:
- condition: state
entity_id: light.bathroom_mirror_lights
state: 'off'
sequence:
- service: script.bathroom_mirror_lights_on
bathroom_mirror_lights_on:
alias: '[Bathroom] Mirror lights on'
sequence:
- choose:
- conditions:
- condition: state
entity_id: input_select.home_mode
state: Day
sequence:
- choose:
- conditions:
- condition: state
entity_id: input_boolean.sleep_mode
state: 'on'
sequence:
- service: light.turn_on
entity_id: light.bathroom_mirror_lights
data:
kelvin: 2000
- service: light.turn_on
entity_id: light.bathroom_mirror_lights
data:
brightness: 255
- conditions:
- condition: state
entity_id: input_boolean.sleep_mode
state: 'off'
sequence:
- service: light.turn_on
entity_id: light.bathroom_mirror_lights
data:
kelvin: 3200
- service: light.turn_on
entity_id: light.bathroom_mirror_lights
data:
brightness: 255
- conditions:
- condition: state
entity_id: input_select.home_mode
state: Night
sequence:
- service: light.turn_on
entity_id: light.bathroom_mirror_lights
data:
brightness: 25
bathroom_mirror_lights_off:
alias: '[Bathroom] Mirror lights off'
sequence:
- service: light.turn_off
entity_id: light.bathroom_mirror_lights
bathroom_shower_lights_on:
alias: '[Bathroom] Shower lights on'
sequence:
- choose:
- conditions:
- condition: state
entity_id: input_boolean.sleep_mode
state: 'on'
sequence:
- service: light.turn_on
entity_id: light.shower_lights
data:
brightness_pct: 100
kelvin: 2000
- conditions:
- condition: state
entity_id: input_boolean.sleep_mode
state: 'off'
sequence:
- service: light.turn_on
entity_id: light.shower_lights
data:
brightness_pct: 100
kelvin: 3200
bathroom_shower_lights_off:
alias: '[Bathroom] Shower lights off'
sequence:
- service: light.turn_off
entity_id: light.shower_lights