claytonjn / hass-circadian_lighting

Circadian Lighting custom component for Home Assistant
Apache License 2.0
774 stars 89 forks source link

Transition values not working #223

Open nicholaskillin opened 1 year ago

nicholaskillin commented 1 year ago

I don't know if I'm doing something wrong or if there is a bug, but I can't seem to increase the amount of time it takes to transition from one color to another.

Here is my current config:

circadian_lighting:
  interval: 10
  transition: 30

switch:
  - platform: circadian_lighting
    initial_transition: 30
    lights_ct:
       - light.office_light

The component is working generally. The light was left on and slowly changed color temp throughout the day.

However with this config if I intentionally change the color temperature of the light, then turn the light off with a physical non-smart switch, wait for a few seconds, and then turn it on again, I do see the light transition back to the correct color temperature within a couple of seconds, but the transition itself happens in about 1 second.

Any ideas what I might be doing wrong or misunderstanding about the configuration options?