27 lines
836 B
YAML
Raw Normal View History

######################################################################
## Garage Status Announcements
######################################################################
- alias: 'Garage Status'
trigger:
- platform: state
entity_id:
- cover.garadget_large
- cover.garadget_small
from: 'closed'
to: 'open'
for: '00:02:00'
- platform: state
entity_id:
- cover.garadget_large
- cover.garadget_small
from: 'open'
to: 'closed'
for: '00:02:00'
action:
- service: script.Voice_notify
data_template:
value1: "The {{ trigger.entity_id.split('.')[1]|replace('_', ' ')|replace('garadget large', 'large garage ')|replace('garadget small', 'small garage ') }} is now {{ (trigger.to_state.state)|replace('_', ' ') }}."