I have many Somfy Z-Wave remotes in my HA. They control the shades in my house. Some of these remotes eat through batteries, while others last for a very long time on one battery. I looked at the Z-Wave logs in HA, and I can see that the fast-draining remotes wake every 6 minutes. The long-lived remotes are waking every 720 minutes (12 hours). I used the “Download diagnostics” feature to get the config data for both remotes. The data confirms that they have different wake intervals configured. I want to see if I can set the wake interval through HA. Home Assistant does not expose any configuration parameters in the UI for this device. I have been trying to use the service: ZWAVE_JS.SET_CONFIG_PARAMETER, but I’m not successful. I think that I am not using this tool correctly. Does anyone have advice for setting undocumented/un-exposed z-wave device parameters? How can I get a list of configuration parameters for a given Z-Wave device?
The remotes in question are “VCZ1 by Springs Window Fashions”.
Here is some diagnostic data from one of the 6-minute remotes:
{
"endpoint": 0,
"commandClass": 132,
"commandClassName": "Wake Up",
"property": "wakeUpInterval",
"propertyName": "wakeUpInterval",
"ccVersion": 1,
"metadata": {
"type": "number",
"default": 43200,
"readable": false,
"writeable": true,
"min": 360,
"max": 90000,
"steps": 360
},
"value": 360
},
Here is the same data block from the 12-hour remotes:
{
"endpoint": 0,
"commandClass": 132,
"commandClassName": "Wake Up",
"property": "wakeUpInterval",
"propertyName": "wakeUpInterval",
"ccVersion": 1,
"metadata": {
"type": "number",
"default": 43200,
"readable": false,
"writeable": true,
"min": 360,
"max": 90000,
"steps": 360
},
"value": 43200
},
-Thanks