How to update Zwave wake up parameter for Living connect device

You can use a service call. For a GUI method, you can use Z-Wave JS UI.

service: zwave_js.set_value
data:
  command_class: "132"
  property: wakeUpInterval
  value: 3600
target:
  entity_id: climate.z_wave_thermostat

3600 is the wake up interval in seconds. You’ll have to wait for the device to wake up in the next interval, or manually wake up, until the new setting is applied.

3 Likes