mirror of
https://github.com/home-assistant/core.git
synced 2025-07-15 09:17:10 +00:00
Only report color temp when in the correct color mode (#15791)
This commit is contained in:
parent
6f2000f5e2
commit
91e8680fc5
@ -99,6 +99,9 @@ class DeconzLight(Light):
|
||||
@property
|
||||
def color_temp(self):
|
||||
"""Return the CT color value."""
|
||||
if self._light.colormode != 'ct':
|
||||
return None
|
||||
|
||||
return self._light.ct
|
||||
|
||||
@property
|
||||
|
Loading…
x
Reference in New Issue
Block a user