#Alarmo Loop/Repeat Siren?

1 messages · Page 1 of 1 (latest)

lost blade
#

Hi all. Working on swapping my siren I use for sounds and the alarm. In doing so I'm trying to figure out how to make Alarmo repeat the siren until the system is disarmed but keeping the other sounds only on repeat once. I can change the config on the device itself but that changes it for everything. Or if I'm just going about it entirely the wrong way. Thanks!

lost blade
#

I brute forced this with a script but I don't love it. I was working off this link but can't seem to reference anything on the device to pick it up after it's playing so I just hard set a time based on the length of the audio file. It's a Zooz ZSE50.
https://community.home-assistant.io/t/repeat-alarm-sound-untill-alrm-is-disarmed/332180/2

  - repeat:
      until:
        - condition: state
          entity_id: alarm_control_panel.alarmo
          state:
            - disarmed
      sequence:
        - action: siren.turn_on
          metadata: {}
          target:
            entity_id: siren.chime_play_tone
          data:
            tone: "9"
            volume_level: 0.15
        - delay:
            hours: 0
            minutes: 0
            seconds: 9
            milliseconds: 0
alias: Alarm Sound
description: ""