Alarmo play siren on Android Phone

Hello,

I’m configuring actions in Alarmo and I wonder if it’s possible to make the mobile sound reproduce the sound (siren) when certain Alarmo actions are triggered, example, when the Alarm is Armed or when the alarm is triggered due sensor has detected motion.

I’ve seen some examples with speakers or other devices like Alexa, but not using the Phone / mobile app itself

Hi,

Just make your own automation based on the state of Alarmo. I get mine to speak out the actions so my phone will say “Alarm Arming” etc. etc.

I’m able to create the automations based on the Alarmo state, however which service or entity should I call to reproduce a media or a TTS ?

Here’s my example :

alias: Alarm System Armed
description: ""
trigger:
  - platform: state
    entity_id:
      - alarm_control_panel.alarmo
    to: armed_away
condition: []
action:
   - service: notify.mobile_app_pixel6
    data:
      message: TTS
      data:
        media_stream: alarm_stream_max
        tts_text: Alarm System Armed
        ttl: 0
        priority: high
mode: single