Upgraded to 2021.12.0 and now my Hue transition speeds are no longer working.
Lights go straight to the next brightness level, without any time between.
Any ideas?
Code:
- alias: Chandelier Candle Mode
initial_state: on
trigger:
platform: state
entity_id: input_boolean.chandelier_candle_mode
to: "on"
action:
- alias: Repeat this until the chandelier boolean is turned off
repeat:
sequence:
- service: light.turn_on
data_template:
entity_id: light.chandelier_bottom
brightness: "{{ (range(100, 255)|random) }}"
transition: 1
- delay:
milliseconds: "{{ (range(200, 700)|random) }}"
- service: light.turn_on
data_template:
entity_id: light.chandelier_middle
brightness: "{{ (range(100, 255)|random) }}"
transition: 1
- delay:
milliseconds: "{{ (range(200, 700)|random) }}"
- service: light.turn_on
data_template:
entity_id: light.chandelier_top
brightness: "{{ (range(100, 255)|random) }}"
transition: 1
- delay:
milliseconds: "{{ (range(200, 700)|random) }}"
until:
- condition: state
entity_id: input_boolean.chandelier_candle_mode
state: "off"