mirror of
https://github.com/home-assistant/core.git
synced 2025-08-04 05:05:09 +02:00
Fix tplink color temp conversion (#68484)
This commit is contained in:
@@ -87,7 +87,10 @@ class TPLinkSmartBulb(CoordinatedTPLinkEntity, LightEntity):
|
|||||||
|
|
||||||
# Handle turning to temp mode
|
# Handle turning to temp mode
|
||||||
if ATTR_COLOR_TEMP in kwargs:
|
if ATTR_COLOR_TEMP in kwargs:
|
||||||
color_tmp = mired_to_kelvin(int(kwargs[ATTR_COLOR_TEMP]))
|
# Handle temp conversion mireds -> kelvin being slightly outside of valid range
|
||||||
|
kelvin = mired_to_kelvin(int(kwargs[ATTR_COLOR_TEMP]))
|
||||||
|
kelvin_range = self.device.valid_temperature_range
|
||||||
|
color_tmp = max(kelvin_range.min, min(kelvin_range.max, kelvin))
|
||||||
_LOGGER.debug("Changing color temp to %s", color_tmp)
|
_LOGGER.debug("Changing color temp to %s", color_tmp)
|
||||||
await self.device.set_color_temp(
|
await self.device.set_color_temp(
|
||||||
color_tmp, brightness=brightness, transition=transition
|
color_tmp, brightness=brightness, transition=transition
|
||||||
|
Reference in New Issue
Block a user