Only report color temp when in the correct color mode (#15791)

This commit is contained in:
Robert Svensson 2018-08-03 13:56:54 +02:00 committed by Paulus Schoutsen
parent 6f2000f5e2
commit 91e8680fc5

View File

@ -99,6 +99,9 @@ class DeconzLight(Light):
@property @property
def color_temp(self): def color_temp(self):
"""Return the CT color value.""" """Return the CT color value."""
if self._light.colormode != 'ct':
return None
return self._light.ct return self._light.ct
@property @property