How do I get Transition to work on a Wiz Light Bulb?

Hello,

I wasn’t able to find anything on resolving the transition effect. However, I was able to get a workaround going with some scripting to slowly increase the brightness. Have provided the below if it is beneficial for you at all. Basically, it will turn on lights at a low setting and then slowly transition the bulbs to almost being at full brightness. Hope it helps. Thanks.

alias: Wake Up Lights
sequence:
  - service: light.turn_on
    data:
      effect: Daylight
      brightness_pct: 1
    target:
      entity_id: light.bedroom_lights
  - repeat:
      until:
        - condition: state
          entity_id: light.bedroom_lights
          state: "on"
      sequence:
        - service: light.turn_on
          data: {}
          target:
            entity_id: light.bedroom_lights
  - repeat:
      until:
        - condition: numeric_state
          entity_id: light.bedroom_lights
          attribute: brightness
          above: 225
      sequence:
        - service: light.turn_on
          data:
            brightness_step_pct: 1
          target:
            entity_id: light.bedroom_lights
        - delay:
            hours: 0
            minutes: 0
            seconds: 35
            milliseconds: 0
mode: single
icon: mdi:lightbulb-on-50
2 Likes