From cf88d8a1b92b91f0843186a8d0f2b8eeadbf6885 Mon Sep 17 00:00:00 2001 From: Adam Mills Date: Tue, 10 Apr 2018 14:11:00 -0400 Subject: [PATCH] iglo hs color fix (#13808) --- homeassistant/components/light/iglo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/light/iglo.py b/homeassistant/components/light/iglo.py index 77e3972968c..f40dc2ce84e 100644 --- a/homeassistant/components/light/iglo.py +++ b/homeassistant/components/light/iglo.py @@ -79,7 +79,7 @@ class IGloLamp(Light): @property def hs_color(self): """Return the hs value.""" - return color_util.color_RGB_to_hsv(*self._lamp.state()['rgb']) + return color_util.color_RGB_to_hs(*self._lamp.state()['rgb']) @property def effect(self):