jms3000
(Martin)
July 7, 2019, 8:00am
1
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?
andrewpc
(Andrew)
July 7, 2019, 9:01am
2
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
jms3000
(Martin)
July 7, 2019, 9:11am
3
How do I include it in HA? What kind of device is it after pairing it with zwave?
andrewpc
(Andrew)
July 7, 2019, 10:03am
4
Have a look here. Its not available to me yet but looks promising
was browsing ebay and saw this. Hopefully some folks who can code drivers, also buy this
Reading time: 42 mins 🕑
Likes: 153 ❤
hybrix
(Gonzalo)
July 7, 2019, 11:16pm
5
Xiaomi gateway can work as siren
jms3000
(Martin)
July 10, 2019, 10:13am
6
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"