Using TTS integration with alarm system - Please Help!

I have been trying to get tts to work on my Google Home Mini using various home alarm sensors. Ideally I would like google home to report using tts when a window or door has been opened.

I am able to get these home alarm sensors to work using light control applications in Home Assistant. I am also able to receive tts messages when I type in text from the HA home screen card and tts will also work in a time based animation. But for some reason I can’t get tts to work directly with my alarm system sensors. I’m thinking that I lacking somewhere in my configuration. Here are a couple examples of code I have tried:

    alias: ‘Dan’s Window Open’
    trigger:
        platform: state
        entity: binary_sensor.11_dan
        from: ‘off’
        to: ‘on’
        for: ‘00:00:02’
        action:
        service: tts.google_say
        data:
        entity_id: media_player.family_room_speaker
        message: “Alert, alert, Dans Window Open!”

    id: Test
    alias: “test”
    trigger:
        entity_id: binary_sensor.13_office
        from: ‘off’
        platform: state
        to: ‘on’
        action:
        service: tts.google_say
        entity_id: media_player.family_room_speaker
        data:
        message: ‘… Yet another test!’

Thank you for your help!

This works for me:

- action:
  - data:
      entity_id: media_player.living_room_speaker
      message: Δεν είσαι ευπρόσδεκτος εδώ. Φύγε αμέσως. 
      language: el
    service: tts.google_say
  condition:
  - condition: state
    entity_id: alarm_control_panel.ha_alarm
    state: armed_away
  id: '1505252737215'
  trigger:
  - entity_id: binary_sensor.s4_camera_motion_active
    from: 'off'
    platform: state
    to: 'on'
  - entity_id: binary_sensor.pir_living_room
    from: 'off'
    platform: state
    to: 'on'
  - entity_id: sensor.kitchen_pir
    from: standby
    platform: state
    to: motion detected
  - entity_id: sensor.kitchen_door
    from: closed
    platform: state
    to: open
  - entity_id: binary_sensor.door_window_sensor_158d0001dbc81d
    from: 'off'
    platform: state
    to: 'on'

Thank you! I’ll give this a try.

My primary objective is to utilize these alarm sensors independent of the alarm system.

The above code did not work for me. I’m still not sure what I’m doing wrong…