I’d like to find a z-wave alarm/siren that can make multiple different types of noise based on the message sent to it.
I’ve got a Neo Coolcam one, and I can configure it to make different noises, but once configured that’s the only noise I’ll get if I toggle its switch.
Instead I’d like to be able to ask the siren to beep every so often, for example while my alarm is setting, but also be able to make it do a siren noise if the alarm goes off.
If it can act as a z-wave range extender, so much the better
I would like an answer to this as well. It would be nice to have a siren lightly chirp when a door opens, etc. I have heard that the siren included with the Aeotec doorbell can perform this function.
From the manual it says you can create different scenes, and in each scene:
Step 3 - Input LUUP script “luup.call_action(‘urn:micasaverde-com:serviceId:ZWaveNetwork1’,‘SendData’,{Node=‘altid’,Data=‘112 4 37 2 769’},1)”
769 is the only number you are concerned with changing. This comes from the hexidecimal value 0x301 (you can confirm this in a calculator) which will output sound 3 and volume 1.
If you want Sound 4 and Volume 2, then convert 0x402 hexidecimal to decimal and replace 769 with the new decimal number (1026).
The easiest way to view the hexidecimal is 0xYZZ where Y is Sound, and ZZ is Volume. Y can be changed from a number of 1-5, while ZZ can be changed between 01-03.
Which implies you can send it different message to make different sounds. Not sure how you’d do that in HASS though?
In the data template change node to the node of your siren, leave parameter as 37 and value is Sound <1 to 5> - <Low, Mid or High> Volume. If you turn it on then immediately back off it will usually chirp but sometimes does nothing. If you put in a 1 second delay it will sound for at least 3 seconds, which definitely sounds like an alarm not a chirp even at low volume. If you’re looking for the occasional warning but not quite siren it’s good (I use the different sounds entry delay/exit delay/alarm arming/etc on my alarm system). If you’re looking for a gentle chime when a particular door gets opened multiple times a day, this isn’t it.
I looked into that a few weeks back and found a few threads that said it worked similarly to the Aeotec siren in that it basically just shows up as one switch. The other functionality isn’t implemented.
Found out that while my Neo Coolcam siren only shows 1 switch, you can use a script to switch it between doorbell and alarm mode before playing the sound, or change the sound itself. e.g.
Hi soul which siren you are using? Snd with which doirbell please? Im buying dome staff to start working on mine snd would rather buy something ghat can eork.
I am more inclined in buying the one with 5V power supply to avoid having changing the batteries.
Guess i need to buy one and try it to check if i can work the same you did. I will check the commands at least before to confirm that they are similar and w’ll take it from there.
It shows up fine, I can see all the config details and they are as shown above. But I don’t seem to get a response when I send a command to configure sounds, and using the switch it doesn’t make any noise. Any ideas?
EDIT: I stopped and restarted my Z-Wave network and it now appears to be working as expected.
Thx for your scripts. They worked for me, but until I upgraded to z-wave js.
The new service to change configuration parameter in z-wave js is zwave_js.set_config_parameter but unfortunately the same values in the template do not work. Any idea how this would work in z-wave js case?