Page 1 of 3

Send Notification_report to play chime

Posted: 06 Feb 2017 23:48
by prowebuk
Is there a way to send a notification report from the zway controller to the Life Line group via the API to make a D-link DCH-Z510 z-wave siren play alternate sounds?

SWITCH_BINARY_SET starts the siren but the following other sounds are available through "NOTIFICATION_REPORT"

Smoke Alarm (0x01), Event Any, Fire Alert
Access Control (0x06), Event 0x16, Door Chime
Home Security (0x07), Event Any, Emergency
Emergency (0x0A), Event 0x01, Police
Emergency (0x0A), Event 0x02, Fire
Emergency (0x0A), Event 0x03, Ambulance

Thanks in advance

Re: Send Notification_report to play chime

Posted: 14 Feb 2017 03:31
by PoltoS
Only via zway.SendData(nodeId, []) by constructing the command manually

Re: Send Notification_report to play chime

Posted: 02 Feb 2018 18:33
by enbemokel
Hi, is there a chance to get some help? I´m trying from time to time to get this up and running, but I think I´m missing a thing.
The Siren has the node ID 29, but I have no idea to construct this command. Tried different things but no luck.
I found these information:
COMMAND_CLASS_NOTIFICATION = 0x71
NOTIFICATION_REPORT = 0x05
Access Control (0x06), Event 0x16, Door Chime

and build up this with help from some websites:
zway.SendData(29, [0x71, 0x05, 0x00, 0x00, 0x00, 0x00, 0x06, 0x16, 0x00, 0x00])

Any idea how to get this working?
Best regards

Re: Send Notification_report to play chime

Posted: 07 Feb 2018 23:48
by bjoern812
Hi enbemokel,

I have a Zipato Siren and use the module/app "Code Device" with a "togglebutton" and this code to use the "sound" door bell:

Code: Select all

zway.SendData(35,[113,5,0,0,0,0,6,22,0,0])
(my siren device is 35) and the other parameters found at https://www.vesternet.com/resources/app ... s/apnt-125

Use the decimal-values instead of the hex-values.

Greetings
Bjoern

Re: Send Notification_report to play chime

Posted: 08 Feb 2018 14:58
by enbemokel
Hi Bjoern,
thanks for your answer. I think i found this information from you somewhere else and managed to configure the "Code Device" app.
Used another item then togglebutton, but after changing now to togglebutton the output is the same ;-)

Also i can see in the "http://<IP>:8083/expert/#/network/queue" that a notification report (alarm) is send.
29 Alarm Delivered 1d a 71 5 0 0 0 0 6 16 0 0 25

In ZNiffer History it looks fine.

29 100 kbps - - - Notification Report (00, 00, 00, 00, 06, 16, 00, 00)

So this looks good for me now, BUT my siren is offline now :-(( so I can´t test immediately....will write tomorrow some news.
Best regards
Nico

Re: Send Notification_report to play chime

Posted: 09 Feb 2018 14:12
by enbemokel
So, tested and it´s working :-))
So far I created 5 different CodeDevices with the different sounds for different options. Thanks for your additional information.
Best regards
Nico

Re: Send Notification_report to play chime

Posted: 11 Feb 2018 12:43
by junumalik
Thanks. It worked perfectly.

Re: Send Notification_report to play chime

Posted: 07 Apr 2018 01:10
by eyeq202
I also have the D-link DCH-Z510 z-wave siren i try to play the alternate sounds. Make everything like in this post. But no luck with it.

i use this code with my device id

zway.SendData(66,[113,5,0,0,0,0,6,22,0,0]) put in in the code device app as toggle button.

there is some response in the expert queue but no noise from the siren.

Can someone here post the command to use it in the code device app with a toggle button ?

thx

Re: Send Notification_report to play chime

Posted: 13 Apr 2018 00:22
by ser1es
Thanks. It worked perfectly.

Re: Send Notification_report to play chime

Posted: 14 Apr 2018 09:36
by eyeq202
Hi ser1es can you explain how you did it ? i try it same like named here. Do you change anything else ?