Hello,
I’ve had two GE 14294 dimmers working for quite some time, but in the last couple of months they stopped functioning correctly in Home Assistant. When I originally set them up a couple years ago I had to add the following to my configuration.yaml
zwave:
light.microwave_light:
refresh_value: true
delay: 3
light.kitchen_lights:
refresh_value: true
delay: 3
When this stopped working I started researching and found where something may have changed and the zwave configuration should be kept in a separate file so I changed my configuration.yaml to
zwave:
device_config: !include zwave_device_config.yaml
and then in the zwave_device_config.yaml I put
light.microwave_light:
refresh_value: true
delay: 3
light.kitchen_lights:
refresh_value: true
delay: 3
Restarted home assistant and the refresh delay still is not being used, the toggle flips back and forth due to the ramp up/down delay on the dimmers as it’s trying to poll the devices too fast. I’ve seem some posts that this can be configured via the UI now and that’s how it should be done but I can’t figure out how to get change those parameters via the UI. Did something else change that I should be doing? Do I need to change this via the UI somehow? Any guidance would be appreciated.