LZW42 adjust ramp rate

Unless I’m missing something it doesn’t seem like the ramp rate of the LZW42 bulbs is a changeable parameter. It seems to take 4-5 seconds to ramp on or off. 2 seconds would be more to my liking. If i’m not crazy(A BIG IF :grin: ) and it’s currently not something that can be changed, is it something that could be added via a firmware update?

If so, this is my formal request to get this feature added!

The LZW42 does support ramp rate/transition times, but it is up to your hub or controlling device to specify the transition time when issuing an on or off command.

I tested this by turning on a bulb 3 different times, once using the default transition (4-5 seconds), once using a 10 second transition, and once with an instant transition, and everything worked as expected.

I do think it would be nice to have a config parameter for the default dimming duration though. It would help in situations where the hub or controlling device does not allow you to specify a duration.

I see what you’re saying. Not really sure how to do that with home assistant. I’ll look into it. That would work for when I’m controlling with scenes/automations or directly from HA app if I can figure out how to do it(OZW beta).

Once the red series switches arrive I intend to associate bulbs to switches though. I’m guessing that wouldn’t work when a physical switch is used since the hub is bypassed.

You may have a couple solutions in HA.

I am not sure if the OZW beta supports transition times, but if so you may be able to turn the lights on/off by specifying the transition time in the data portion:

automation:
- id: one
  alias: Turn on light when motion is detected
  trigger:
    - platform: state
      entity_id: binary_sensor.motion_1
      to: 'on'
  action:
    - service: light.turn_on
      data:
        entity_id: light.living_room
        brightness: 255
        transition: 0

Another option is to set the dimming speed within OZW itself for that particular bulb. I use zwave2mqtt instead of the OZW beta, but there should be an option in the ozw configuration page (where you can go to set all your config parameters) to set the dimming speed.

Mine looks like this:
image

Also, if your goal is to have instant on/off when you get your red switches, you can associate them using group 2 instead of group 3 and you wont have to worry about the transition time.

1 Like