Rain window alert will now ALWAYS text notify, but only TTS if home

This commit is contained in:
2022-09-06 17:37:05 -04:00
parent 0f11285949
commit 1cbbf00528

View File

@ -1543,9 +1543,6 @@ automation:
entity_id: binary_sensor.precipitation
to: 'on'
condition:
- condition: state
entity_id: binary_sensor.people_present
state: 'on'
- condition: state
entity_id: binary_sensor.windows
state: 'on'
@ -1554,10 +1551,15 @@ automation:
data:
title: "WINDOWS ARE OPEN!"
message: "It is raining and there are windows open in the house. Please close them!"
- service: script.speech_engine
data:
who: everywhere
message: "It is raining and there are windows open in the house. Please close them!"
- if:
- condition: state
entity_id: binary_sensor.people_present
state: 'on'
then:
- service: script.speech_engine
data:
who: everywhere
message: "It is raining and there are windows open in the house. Please close them!"