Help with adapting lifx bulbs #890
Replies: 1 comment
-
My LIFX bulbs are working fine with Adaptive Lighting. Does manually calling the Having said that, I generally recommend configuring Adaptive Lighting without any actual physical devices then creating two template entities via the Helpers page to extract the current colour temperature in kelvin and the current brightness from the Adaptive Lighting switch. You can then use the values from those sensors in an automation that runs every 5 minutes that calls The template for colour temperature would look like this: {{ state_attr("switch.adaptive_lighting_reference", "color_temp_kelvin") }} And the brighess would look like this: {{ state_attr("switch.adaptive_lighting_reference", "brightness_pct") }} The service call would then look something like this: service: lifx.set_state
target:
entity_id: light.lifx_bulb
data:
transition: 45
brightness_pct: '{{ states("sensor.adaptive_lighting_brightness") }}'
color_temp_kelvin: '{{ states("sensor.adaptive_lighting_color_temperature") }}' Hope that makes sense/helps. :) |
Beta Was this translation helpful? Give feedback.
-
Hi,
I wonder if anyone can help.
For a while I've been having an issue with my lifx bulbs not automatically adapting. I have to manually or automate a service call to adapt them.
I have tried different combinations of the checkboxs in AL configuration UI but none seem to allow the lifx bulbs to automatically adapt. My hue and tuya lights have no issues adapting automatically just my lifx ones.
Has anyone had any similar issues with lifx?
Thanks,
Sam
Beta Was this translation helpful? Give feedback.
All reactions