35 lines
823 B
YAML
35 lines
823 B
YAML
- id: bathroom-door-day
|
|
alias: '[Bathroom] Door Open Day'
|
|
mode: restart
|
|
trigger:
|
|
- platform: state
|
|
entity_id: binary_sensor.bathroom_door_open_close
|
|
to: 'on'
|
|
condition:
|
|
- condition: state
|
|
entity_id: input_select.home_mode
|
|
state: Day
|
|
action:
|
|
- service: light.turn_on
|
|
entity_id: light.bathroom_lights
|
|
data:
|
|
brightness_pct: 100
|
|
kelvin: 3200
|
|
- id: bathroom-door-night
|
|
alias: '[Bathroom] Door Night'
|
|
mode: restart
|
|
trigger:
|
|
- platform: state
|
|
entity_id: binary_sensor.bathroom_door_open_close
|
|
to: 'on'
|
|
condition:
|
|
- condition: state
|
|
entity_id: input_select.home_mode
|
|
state: Night
|
|
action:
|
|
- service: light.turn_on
|
|
entity_id: light.bathroom_lights
|
|
data:
|
|
brightness_pct: 5
|
|
kelvin: 2700
|