HA version 0.102.0 light transition not working

Hi,
I am using a Meross color light bulb and want to make a very simple transition but it does not work
I saw some comments from other people mentioning there might be a bug

I’d appreciate if someone clarify and/or point me to the right resources

here is the code

  initial_state: 'off'
  trigger:
    platform: template
    value_template: "{{ 1==1 }}"
  action:
    - service: homeassistant.turn_on
      entity_id: light.bedroom_lamp_2
      data:
        rgb_color: [0,0,255]
        brightness_pct: '10'
        transition: 10
    - delay: 00:00:10
    - service: homeassistant.turn_on
      entity_id: light.bedroom_lamp_2
      data:
        rgb_color: [0,0,255]
        brightness_pct: '75'
        transition: 10
    - delay: 00:00:35
    - service: homeassistant.turn_on
      entity_id: light.bedroom_lamp_2
      data:
        rgb_color: [255,230,200]
        brightness_pct: '75'
        transition: 30
    - delay: 00:00:35
    - service: homeassistant.turn_on
      entity_id: light.bedroom_lamp_2
      data:
        rgb_color: [255,230,200]
        brightness_pct: '100'
        transition: 30
    - delay: 00:00:60
    - service: homeassistant.turn_off
      entity_id: light.bedroom_lamp_2


2 Likes