Send Notification_report to play chime

Discussions about RaZberry - Z-Wave board for Raspberry computer
prowebuk
Posts: 1
Joined: 06 Feb 2017 23:37

Send Notification_report to play chime

Post 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
User avatar
PoltoS
Posts: 7565
Joined: 26 Jan 2011 19:36

Re: Send Notification_report to play chime

Post by PoltoS »

Only via zway.SendData(nodeId, []) by constructing the command manually
enbemokel
Posts: 482
Joined: 08 Aug 2016 17:36

Re: Send Notification_report to play chime

Post 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
bjoern812
Posts: 23
Joined: 19 Apr 2016 22:05

Re: Send Notification_report to play chime

Post 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
enbemokel
Posts: 482
Joined: 08 Aug 2016 17:36

Re: Send Notification_report to play chime

Post 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
enbemokel
Posts: 482
Joined: 08 Aug 2016 17:36

Re: Send Notification_report to play chime

Post 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
junumalik
Posts: 1
Joined: 11 Feb 2018 12:41

Re: Send Notification_report to play chime

Post by junumalik »

Thanks. It worked perfectly.
eyeq202
Posts: 19
Joined: 02 Apr 2018 23:41

Re: Send Notification_report to play chime

Post 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
ser1es
Posts: 1
Joined: 13 Apr 2018 00:19
Contact:

Re: Send Notification_report to play chime

Post by ser1es »

Thanks. It worked perfectly.
eyeq202
Posts: 19
Joined: 02 Apr 2018 23:41

Re: Send Notification_report to play chime

Post by eyeq202 »

Hi ser1es can you explain how you did it ? i try it same like named here. Do you change anything else ?
Post Reply