2016-12-27 18:08:51 +00:00
|
|
|
######################################################################
|
|
|
|
## Good night Routine
|
|
|
|
######################################################################
|
|
|
|
|
|
|
|
- alias: 'Good Night Routine'
|
|
|
|
trigger:
|
|
|
|
- platform: event
|
|
|
|
event_type: good_night
|
|
|
|
- platform: state
|
2017-02-03 00:05:26 +00:00
|
|
|
entity_id:
|
|
|
|
- sensor.samsungtv
|
|
|
|
- sensor.withings_scale
|
2016-12-27 18:08:51 +00:00
|
|
|
state: 'Offline'
|
2017-02-03 00:05:26 +00:00
|
|
|
from: 'Online'
|
2016-12-27 18:08:51 +00:00
|
|
|
|
|
|
|
condition:
|
|
|
|
- condition: time
|
|
|
|
after: '20:00:00'
|
|
|
|
- condition: state
|
|
|
|
entity_id: input_boolean.guest_mode
|
|
|
|
state: 'off'
|
|
|
|
|
|
|
|
action:
|
|
|
|
- service: script.interior_off
|
|
|
|
|
2016-11-09 05:41:28 +00:00
|
|
|
|