Are you writing a driver for this device? If so, you really want something like this. You can convert decimal to hex if you want, but there shouldn't be any reason to, even though most Z-Wave folks are probably used to seeing it that way (but I say that with this code being completely untested):
But it might be good to know what device this is or what you're trying to do. Casual Googling suggests this might be a Ring Outdoor Siren. Hubitat has a built-in driver for this. Do none of the provided commands do what you want? Or if you aren't intending to write your own driver, these commands will be what you need to use to make the device work for you in apps, etc.
It is a ring outdoor siren but the only thing the inbuilt driver can do is the siren.
Other platforms have got the led to work.
Thus teyingto see if I can do some basic commands.
Then will work up to full driver.
Any help appreciated.
I am trying the send z wave command on teh device page and i get:
contains illegal character for hexBinary: zwave.indicatorV3.indicatorSet(indicatorCount:1,value:0,indicatorValues:[[indicatorId:13,propertyId:1,value:100]])
From the device page under the Advanced send zwave command you have to just send the full hex string for the command, nothing else. I like to work it up in PC Controller and copy/paste. Give me a minute.
i have this command
cmds.add(zwave.indicatorV3.indicatorSet(indicatorCount:1, value: 0, indicatorValues:[[indicatorId:0x0D, propertyId:1, value:0x64]]).format())
which does a strobe
Have you tried the Strobe command or anything else on the page? I don't have one of these so can't say for sure (or test what what anything does), but it looks like it can do more than the siren.
That being said, wiring your own driver is a fine approach too. Just wanted to make sure you really need to.