Page 1 of 1

Need help changing zwave property

Posted: Sunday 27 September 2020 7:46
by naps1saps
I have an alarm with custom sound player Zooz ZSE19
I can go into zwave configuration properties for this device and change the custom sound number and it will play the sound you select.

How do I accomplish this in dzvents? I saw something about using web get/put to do this but I am really not familiar with that stuff. Is someone able to walk me through getting that to work from scratch? I want to play a "you've got mail" tone when my mailbox is opened.

Thanks in advance.

Re: Need help changing zwave property

Posted: Sunday 27 September 2020 8:27
by waaren
naps1saps wrote: Sunday 27 September 2020 7:46 How do I accomplish this in dzVents?
dzVents does not have a native command for that but if you know how to do it from the OS commandLine or via a URL dzVents could perform the change.

Re: Need help changing zwave property

Posted: Monday 28 September 2020 4:51
by naps1saps
I'm going off this but they kind of skip the step about the URL. Maybe I'm just dense.
viewtopic.php?t=30315

Re: Need help changing zwave property  [Solved]

Posted: Saturday 03 October 2020 8:47
by naps1saps
After some research the issue is the same as the Aeotec 6 doorbell/alarm which is now supported kind of. Along the way I found the CURL I've been looking for. Add the following to your DzVents script to play a tone. Replace ##ID## with the zwave device number. Replace ### with the sound number you wish to play and enter your Domoticz web path. Remove --insecure if you have a valid SSL certificate.

Code: Select all

os.execute('curl --insecure --data "##ID##-CONFIGURATION-config-byte-1-3=###" https://127.0.0.1:8080/ozwcp/valuepost.html')