Hi!
I have a Fibaro motion sensor (set to name eye1) connected via Telldus lite v2.
When I walk in front of the motion sensor I can see it in the HA log “eye1 turned on”
Trying to make my HA to say something when motion is called.
- alias: Theres been motion
trigger:
- platform: state
entity_id: binary_sensor.eye1
to: 'on'
action:
- service: tts.google_say
data_template:
entity_id: media_player.Vardagsrum
message: "Det rör sig i tvättstugan"
But this does’t work. What I’m doing wrong here?