mirror of
https://github.com/CCOSTAN/Home-AssistantConfig.git
synced 2025-06-18 23:09:40 +00:00
37 lines
1.0 KiB
YAML
Executable File
37 lines
1.0 KiB
YAML
Executable File
######################################################################
|
|
## Announce when one of the nests kick in
|
|
## Announce over all Chromecast Audios
|
|
######################################################################
|
|
- alias: 'Nest Status'
|
|
id: 7812fdaf-a3f8-498b-8f07-28e977e528fe
|
|
trigger:
|
|
|
|
- platform: state
|
|
entity_id:
|
|
- climate.downstairs
|
|
- climate.upstairs
|
|
from: 'off'
|
|
|
|
action:
|
|
- service: script.speech_engine
|
|
data:
|
|
NestStatus: "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)}}."
|
|
call_window_check: 1
|
|
|
|
- alias: 'Prevent Upstairs Nest Below 76'
|
|
id: 7812fdaf-a3f8-498b-8f07-28e977e528ff
|
|
trigger:
|
|
- platform: numeric_state
|
|
entity_id: climate.upstairs
|
|
attribute: temperature
|
|
below: 76
|
|
action:
|
|
- delay:
|
|
minutes: 3
|
|
- service: climate.set_temperature
|
|
data:
|
|
entity_id: climate.upstairs
|
|
temperature: 77
|
|
|
|
|