DVCSMP-1795 Philips Hue: Add support for Hue Ambience bulb

-Add support for Hue White Ambiance Bulb (white,dimmable+color temp)
This commit is contained in:
Lars Finander
2016-05-26 16:52:45 -07:00
parent aa3a18f421
commit ecfb99974b
2 changed files with 112 additions and 0 deletions

View File

@@ -323,6 +323,8 @@ private getDeviceType(hueType) {
return "Hue Bulb"
else if (hueType?.equalsIgnoreCase("Color Light"))
return "Hue Bloom"
else if (hueType?.equalsIgnoreCase("Color Temperature Light"))
return "Hue White Ambiance Bulb"
else
return null
}