hass-circadian_lighting icon indicating copy to clipboard operation
hass-circadian_lighting copied to clipboard

Circadian Lighting custom component for Home Assistant

Results 110 hass-circadian_lighting issues
Sort by recently updated
recently updated
newest added

I didn't like that the color temperature would switch to 'min_colortemp' when the sun sets or rises. I wanted to have a more subtle transition between day and night. So...

The way the Wiki describes the various sleep_ parameters, it sounds like the parameter is optional, and since I'm using a brightness-only bulb (KL110). A bit of cussing, a bit...

````2019-04-09 03:02:52 ERROR (SyncWorker_11) [custom_components.circadian_lighting.switch] Exception in update_switch when dispatching 'circadian_lighting_update': () Traceback (most recent call last): File "/home/homeassistant/.homeassistant/custom_components/circadian_lighting/switch.py", line 245, in update_switch self._hs_color = self.calc_hs() File "/home/homeassistant/.homeassistant/custom_components/circadian_lighting/switch.py", line 228,...

https://github.com/claytonjn/hass-circadian_lighting/wiki/Advanced-Configuration#component-configuration-variables It's a float, but what does the float represent? metres (like all sane people), or what?

` def calc_colortemp(self): if self.data['percent'] > 0: return ((self.data['max_colortemp'] - self.data['min_colortemp']) * (self.data['percent'] / 100)) + self.data['min_colortemp'] elif -10 < self.data['percent'] < 0: return ((10000 - 2500) * (abs(self.data['percent'] /...

Would be really useful for people looking at this to get a sense of what bulbs/hardware might be supported by this to enable quickly researching upgrade options. Thanks!

Hi! I have ~100 hue ambient lights and am using the Conbee II with Deconz. If I turn on more than ~20 lights on at once, only around 12 will...

Hello, thanks for the great work on this integration! I created a configuration with two switches, as below: ``` adaptive_lighting: - name: "nondimming" lights: - light.bedroom_hallway - light.kitchen_cabinet_lights - light.kitchen_ceiling...

Currently, if a CL switch is configured to adjust both color temperature and brightness, the CL toggle switch and the `disable_state` disables all adjustment (both color temperature and brightness). It...

enhancement