You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
542 B
23 lines
542 B
######################################################################
|
|
## Good night Routine
|
|
######################################################################
|
|
|
|
- alias: 'Good Night Routine'
|
|
trigger:
|
|
- platform: event
|
|
event_type: good_night
|
|
- platform: state
|
|
entity_id: sensor.samsungtv
|
|
state: 'Offline'
|
|
|
|
condition:
|
|
- condition: time
|
|
after: '20:00:00'
|
|
- condition: state
|
|
entity_id: input_boolean.guest_mode
|
|
state: 'off'
|
|
|
|
action:
|
|
- service: script.interior_off
|
|
|
|
|