I recently purchased a couple Bali blinds that came with Graber VCZ-1 z-wave 2 button remotes. They were originally bound to the blinds (to control up/down). I’ve reset them and bound them to my HA controller and I am hoping to use them as 2 button remotes to control other things, but I’m afraid I have no idea how to do that. The only place I find them are in the z-wave section:
I’ve been unable to get this to work. I got the node added, just like you did, but when I edited my XML and added the same snippet and restarted HA, the remote node would get stuck in “CacheLoad” and I ended up having to reset everything.
Did this ever happen to you? How did you figure out what this XML is anyway? For you do you have “entities” associated with the zwave node like you do with your shade (ex: cover.xxx)?
@loafbread How did you get this working? I found my zwcfg_* file, but it doesn’t appear to have been updated since I switched to zwave_js so it doesn’t contain the blinds I recently added. Is the code you shown an automation? Where did you get the values you used?
@volvo you don’t need zwcfg_* if you are using the latest Z-Wave JS integration. The code above is an automation. Assuming you have added the remote to your Z-Wave network, you should be able to view the remote in the Settings → Devices page. That page will show the “Device_id” which is the “node_id:” in the automation. The top button is “property_key: 001” the bottom button is “property_key: 002”. There is no sensor or switch or binary_switch for the remote buttons. You have to use the event platform in an automation to use the buttons.
After doing a little more digging, I found the Developer Tools > Events UI and could monitor zwave_js_value_notification when I pressed the up/down buttons to see what parameter/values I should look for. It now works. Thanks for your help @loafbread