Hey All… Just learning here.
One of my first Automatons, and when I close the front door Alexa says “The Front Door was just closed” But then only a few seconds later says “The front door was opened” and finally again “The Front Door was just closed” … ??? . Doesn’t seem to matter if the door stays open for a long time.
The goal is to say it just one time…
I don’t seem to have the same problem when the front door is opened. That announcement is identical except the entity and announcement. It says just one time…“the front door was just opened”
Any suggestions?? Thanks
alias: Front Door Closed
description: Tells Alexa to say the front door is closed
trigger:
- platform: state
entity_id:- binary_sensor.front_door
from: “on”
to: “off”
condition: []
action:
- binary_sensor.front_door
- service: notify.alexa_media_echo_dot_ver_4
data:
message: The Front Door was just Closed
title: Front Door Closed
data:
type: tts - stop: “”
mode: single
This one seems to work when opening the front door…
alias: Front Door Opened
description: Front Door Opened sends message to Alexa
trigger:
- platform: state
entity_id:- binary_sensor.front_door
from: “off”
to: “on”
condition: []
action:
- binary_sensor.front_door
- service: notify.alexa_media_echo_dot_ver_4
data:
message: The Front Door was just Opened
title: Front Door Opened
data:
type: tts - stop: “”
mode: single