Manually Turned On Z-Wave Devices Not Refreshing in Home Assistant?

((YOUTUBE VIDEO))

Here is an example automation you can use for your Home Assistant instance. You can adjust the time pattern to what ever refresh value you want.

Just make sure you have included each of your Z-wave devices that do no refresh. Now make sure that you only include line powered devices, batter devices should wake on their own. Refreshing values of battery devices too much can cause extra battery drain.

alias: Time - Refresh Z-wave Devices
description: ''
trigger:
  - platform: time_pattern
    minutes: /10
condition: []
action:
  - service: zwave_js.refresh_value
    data:
      entity_id: light.basement_lights
  - service: zwave_js.refresh_value
    data:
      entity_id: light.bathroom_light
  - service: zwave_js.refresh_value
    data:
      entity_id: switch.bathroom_fan
  - service: zwave_js.refresh_value
    data:
      entity_id: fan.bedroom
  - service: zwave_js.refresh_value
    data:
      entity_id: light.bedroom_overhead
  - service: zwave_js.refresh_value
    data:
      entity_id: light.front_lights
  - service: zwave_js.refresh_value
    data:
      entity_id: light.island_lights
  - service: zwave_js.refresh_value
    data:
      entity_id: light.kitchen_overhead
  - service: zwave_js.refresh_value
    data:
      entity_id: light.kristi_lamp
  - service: zwave_js.refresh_value
    data:
      entity_id: light.living_room_overhead
  - service: zwave_js.refresh_value
    data:
      entity_id: switch.north_up_lights
  - service: zwave_js.refresh_value
    data:
      entity_id: light.pantry_light
  - service: zwave_js.refresh_value
    data:
      entity_id: light.ryan_lamp
  - service: zwave_js.refresh_value
    data:
      entity_id: fan.twins
mode: single