Motion sensor call tts?

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?

Not sure if this is it, but could you try it like this?

- alias: Theres been motion
  trigger:
  - platform: state
    entity_id: binary_sensor.eye1
    to: 'on'
  action:
  - service: tts.google_say
    entity_id: media_player.Vardagsrum
     data:
       message: "Det rör sig i tvättstugan"

Also shouldnt the string be "Vad gör du i tvättstugan"?