Hey folks,
I have an automation that gradually increases brightness (and temperature) of a light, starting from moonlight
mode, reaching the full brightness, and then switching to normal
mode (starting from a small brightness and then up)
For the latter part, I tried the following action
- service: yeelight.set_mode
data:
entity_id: light.yeelight_ceiling3
mode: 'normal'
- service: light.turn_on
data:
entity_id: light.yeelight_ceiling3
brightness: 10
kelvin: 2700
Problem: the light becomes bright for a fraction of a second (probably it remembers its previous state) before dimming down to the specified values.
Is there an action that can do both at the same time?