From c18736c9306a7deb9bd40fb2962da47712739005 Mon Sep 17 00:00:00 2001 From: Moritz W Date: Tue, 22 May 2018 13:55:25 +0200 Subject: [PATCH] Add support for LCT015 & LCT016 lights, which closes #19 --- hueplusplus/Hue.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hueplusplus/Hue.cpp b/hueplusplus/Hue.cpp index 3731dad..fe24b8b 100644 --- a/hueplusplus/Hue.cpp +++ b/hueplusplus/Hue.cpp @@ -192,7 +192,7 @@ HueLight& Hue::getLight(int id) lights.emplace(id, light); return lights.find(id)->second; } - else if (type == "LCT010" || type == "LCT011" || type == "LCT014" || type == "LLC020" || type == "LST002") + else if (type == "LCT010" || type == "LCT011" || type == "LCT014" || type == "LCT015" || type == "LCT016" || type == "LLC020" || type == "LST002") { // HueExtendedColorLight Gamut C HueLight light = HueLight(id, commands, simpleBrightnessStrategy, extendedColorTemperatureStrategy, extendedColorHueStrategy); -- libgit2 0.21.4