Looking for a sound beeper or siren

Tonight a got a push notification on my phone that rain is coming and the awning is out. I did not hear it because I was sleeping. So I want sht. that makes noise or beep. Not too loud.
Is there a zigbee/zwave sound generator where I can control a) the sound level and b) the type of sound? I have seen that the Dlink DCH‑Z510 can make different sound types.

How do I integrate such a device into HA? Normally I have a trigger with condition and action. Can a siren used as a notifier in the action?

Check out the Aeotec Siren 6. Im not sure if its out in Europe yet, but shouldn’t be far away. Z-wave and apparently quite configurable.

1 Like

How do I include it in HA? What kind of device is it after pairing it with zwave?

Have a look here. Its not available to me yet but looks promising

Xiaomi gateway can work as siren

I have got the Smarthings (Sercomm) siren now. I can make a beep with this zigbee command 1 (squawk):

zha.issue_zigbee_cluster_command

{
"ieee":"d0:cf:5e:ff:fe:43:cc:75"
,"endpoint_id":1
,"cluster_id":1282
,"cluster_type":"in"
,"command":1
,"command_type":"server"
,"args": "0"
}

Other sounds can be done with command 0 (start warning):

zha.issue_zigbee_cluster_command

{
"ieee":"d0:cf:5e:ff:fe:43:cc:75"
,"endpoint_id":1
,"cluster_id":1282
,"cluster_type":"in"
,"command":0
,"command_type":"server"
,"args": "16 4 0 0"
}

The args are the folowing: the 16 is the sound type (possible: 16,32,48,64,80,96).
The 4 is the duration.

So a script looks like this:

script:
  siren:
    sequence:
      - service: zha.issue_zigbee_cluster_command
        data:
          ieee: "d0:cf:5e:ff:fe:43:cc:75"
          endpoint_id: 1
          cluster_id: 1282
          cluster_type: "in"
          command: 0
          command_type: "server"
          args: "16 4 0 0"