mirror of
https://github.com/CCOSTAN/Home-AssistantConfig.git
synced 2025-02-20 16:21:58 +00:00
18 lines
671 B
YAML
18 lines
671 B
YAML
|
######################################################################
|
||
|
## Announce when one of the nests kick in
|
||
|
## Announce over all Chromecast Audios
|
||
|
######################################################################
|
||
|
- alias: 'Nest Status'
|
||
|
|
||
|
trigger:
|
||
|
|
||
|
- platform: state
|
||
|
entity_id:
|
||
|
- sensor.downstairs_thermostat_hvac_state
|
||
|
- sensor.upstairs_thermostat_hvac_state
|
||
|
from: 'off'
|
||
|
|
||
|
action:
|
||
|
- service: script.Voice_notify
|
||
|
data_template:
|
||
|
value1: "The {{ trigger.entity_id.split('.')[1].split('_')[0]}} {{ trigger.entity_id.split('.')[1].split('_')[1]}} has now been turned on for {{(trigger.to_state.state)}}."
|