I have several hue lights, and I can transition them on to a specific color/brightness as expected. However, my scene to shut them off doesn’t seem to work with the transition.
Example scenes:
- name: Bedtime
entities:
group.bedroom:
state: on
brightness: 20
xy_color: [0.1684, 0.0416]
rgb_color: [51, 52, 255]
color_temp: 500
transition: 10
group.hallway:
state: on
brightness: 30
transition: 10
- name: Lights Off
entities:
group.bedroom:
state: off
transition: 60
group.hallway:
state: off
transition: 30
group.porch_lights:
state: off
The “bedtime” scene works as expected. When I activate the “Lights Off” scene, I get a 30second and 60second delay before the two groups shut off, but there is no transition happening.
edit: My question was basically whether this is a bug, or if transition isn’t supported when setting the state to off?