mirror of
https://github.com/CCOSTAN/Home-AssistantConfig.git
synced 2025-02-21 00:25:12 +00:00
26 lines
614 B
YAML
Executable File
26 lines
614 B
YAML
Executable File
######################################################################
|
|
## Good night Routine
|
|
######################################################################
|
|
|
|
- alias: 'Good Night Routine'
|
|
trigger:
|
|
- platform: event
|
|
event_type: good_night
|
|
- platform: state
|
|
entity_id: sensor.samsungtv
|
|
state: 'Offline'
|
|
|
|
condition:
|
|
- condition: state
|
|
entity_id: group.family
|
|
state: home
|
|
- condition: time
|
|
after: '20:00:00'
|
|
- condition: state
|
|
entity_id: input_boolean.guest_mode
|
|
state: 'off'
|
|
|
|
action:
|
|
- service: script.interior_off
|
|
|
|
|