How to set wake interval for Somfy Z-Wave remote

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

1 Like

@freshcoast , Yes! Thank you. I was able to set the wake intervals. Based on the Z-wave logs, it looks like this has fixed the problem. I just used the HA Developer tools and called the service from there. I will read up on zwavejs2mqtt and work on that later. I am new to HA and just getting familiar with the tools. Thanks again.

Dev tools was the way to go. If you don’t need to use Association Groups, you don’t necessarily need to switch add-ons.

Hi Everybody,
I am a beginer about HA.
I want to change the wake up interval of my thermostat (Secure SRT321).
How to do it?
Can I write the example described above in the configuration.yaml?
Many thanks.