mirror of
https://github.com/home-assistant/core.git
synced 2025-07-19 11:17:21 +00:00
Guard against 0 value for color temp in WiZ when turning off (#66295)
This commit is contained in:
parent
c1760683a0
commit
cb2e486f6e
@ -108,9 +108,8 @@ class WizBulbEntity(WizToggleEntity, LightEntity):
|
|||||||
assert color_modes is not None
|
assert color_modes is not None
|
||||||
if (brightness := state.get_brightness()) is not None:
|
if (brightness := state.get_brightness()) is not None:
|
||||||
self._attr_brightness = max(0, min(255, brightness))
|
self._attr_brightness = max(0, min(255, brightness))
|
||||||
if (
|
if COLOR_MODE_COLOR_TEMP in color_modes and (
|
||||||
COLOR_MODE_COLOR_TEMP in color_modes
|
color_temp := state.get_colortemp()
|
||||||
and (color_temp := state.get_colortemp()) is not None
|
|
||||||
):
|
):
|
||||||
self._attr_color_mode = COLOR_MODE_COLOR_TEMP
|
self._attr_color_mode = COLOR_MODE_COLOR_TEMP
|
||||||
self._attr_color_temp = color_temperature_kelvin_to_mired(color_temp)
|
self._attr_color_temp = color_temperature_kelvin_to_mired(color_temp)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user