First post. This community is awesome! I’m a newbie trying to send an alert notification to my Amazon Echoes.
What I’ve done:
Created an “alerts.yaml” file
Added "alert: !include alerts.yaml in configuration.yaml
Added to confirguration.yaml:
notify:
- name: alert_alexas
platform: group
services:- service: alexa_media
data:
target:
- alexa_media_kitchen_echo
- alexa_media_bedroom_echo
- alexa_media_living_room_echo
data:
type: announce
- service: alexa_media
Added to alerts.yaml file:
door_to_garage_open:
name: door to garage is open
entity_id: binary_sensor.lumi_lumi_sensor_magnet_aq2_opening_2
state: “open”
message: Someone left the door to the garage open. Please close it.
done_message: The door to the garage is closed
repeat: 1
notifiers:
- alert_alexas
What am I doing wrong?