2017-02-03 22:11:33 +00:00
|
|
|
######################################################################
|
|
|
|
## Announce when people come or go.
|
|
|
|
## Announce over all Chromecast Audios
|
|
|
|
######################################################################
|
2017-02-04 02:46:44 +00:00
|
|
|
- alias: 'State Announcements'
|
2017-02-03 22:11:33 +00:00
|
|
|
|
2017-02-03 21:34:35 +00:00
|
|
|
trigger:
|
|
|
|
- platform: state
|
2017-02-03 22:11:33 +00:00
|
|
|
entity_id:
|
|
|
|
- device_tracker.carlo
|
|
|
|
- device_tracker.stacey
|
|
|
|
- device_tracker.franco
|
|
|
|
- device_tracker.yolanda
|
|
|
|
- device_tracker.joyce_ipad
|
2017-02-04 02:11:01 +00:00
|
|
|
from: 'home'
|
|
|
|
to: 'not_home'
|
|
|
|
for: '00:03:00'
|
|
|
|
|
|
|
|
- platform: state
|
|
|
|
entity_id:
|
|
|
|
- device_tracker.carlo
|
|
|
|
- device_tracker.stacey
|
|
|
|
- device_tracker.franco
|
|
|
|
- device_tracker.yolanda
|
|
|
|
- device_tracker.joyce_ipad
|
|
|
|
from: 'not_home'
|
|
|
|
to: 'home'
|
|
|
|
for: '00:03:00'
|
|
|
|
|
|
|
|
- platform: state
|
|
|
|
entity_id:
|
2017-02-03 22:11:33 +00:00
|
|
|
- cover.garadget_large
|
|
|
|
- cover.garadget_small
|
2017-02-04 02:11:01 +00:00
|
|
|
from: 'closed'
|
|
|
|
to: 'open'
|
|
|
|
for: '00:03:00'
|
|
|
|
|
2017-02-03 21:34:35 +00:00
|
|
|
action:
|
2017-02-03 22:11:33 +00:00
|
|
|
- service: script.Voice_notify
|
|
|
|
data_template:
|
2017-02-04 16:25:58 +00:00
|
|
|
value1: "Attention. {{ trigger.entity_id.split('.')[1].lower().title() }} is now {{ trigger.to_state.state }}"
|