diff --git a/bundles/org.openhab.binding.lifx/README.md b/bundles/org.openhab.binding.lifx/README.md index ad59226d83f59..c3cdc9ac16d80 100644 --- a/bundles/org.openhab.binding.lifx/README.md +++ b/bundles/org.openhab.binding.lifx/README.md @@ -18,6 +18,7 @@ The following table lists the thing types of the supported LIFX devices: | LIFX A19 | colorlight | | LIFX BR30 | colorlight | | LIFX Candle | colorlight | +| LIFX Clean | colorlight | | LIFX Downlight | colorlight | | LIFX GU10 | colorlight | | LIFX Mini Color | colorlight | diff --git a/bundles/org.openhab.binding.lifx/src/main/java/org/openhab/binding/lifx/internal/LifxProduct.java b/bundles/org.openhab.binding.lifx/src/main/java/org/openhab/binding/lifx/internal/LifxProduct.java index 3f561393514e1..945601109ed53 100644 --- a/bundles/org.openhab.binding.lifx/src/main/java/org/openhab/binding/lifx/internal/LifxProduct.java +++ b/bundles/org.openhab.binding.lifx/src/main/java/org/openhab/binding/lifx/internal/LifxProduct.java @@ -91,7 +91,7 @@ public enum LifxProduct { PRODUCT_64(64, "LIFX A19 Night Vision", new Features(TR_1500_9000, COLOR, INFRARED)), PRODUCT_65(65, "LIFX BR30 Night Vision", new Features(TR_1500_9000, COLOR, INFRARED)), PRODUCT_66(66, "LIFX Mini White", new Features(TR_2700_2700)), - PRODUCT_68(68, "LIFX Candle", new Features(TR_1500_9000, MATRIX)), + PRODUCT_68(68, "LIFX Candle", new Features(TR_1500_9000, COLOR, MATRIX)), PRODUCT_70(70, "LIFX Switch", new Features(BUTTONS, RELAYS)), PRODUCT_71(71, "LIFX Switch", new Features(BUTTONS, RELAYS)), PRODUCT_81(81, "LIFX Candle White to Warm", new Features(TR_2200_6500)), @@ -100,14 +100,14 @@ public enum LifxProduct { PRODUCT_87(87, "LIFX Mini White", new Features(TR_2700_2700)), PRODUCT_88(88, "LIFX Mini White", new Features(TR_2700_2700)), PRODUCT_89(89, "LIFX Switch", new Features(BUTTONS, RELAYS)), - PRODUCT_90(90, "LIFX Clean", new Features(TR_1500_9000, HEV)), + PRODUCT_90(90, "LIFX Clean", new Features(TR_1500_9000, COLOR, HEV)), PRODUCT_91(91, "LIFX Color", new Features(TR_1500_9000, COLOR)), PRODUCT_92(92, "LIFX Color", new Features(TR_1500_9000, COLOR)), PRODUCT_94(94, "LIFX BR30", new Features(TR_1500_9000, COLOR)), PRODUCT_96(96, "LIFX Candle White to Warm", new Features(TR_2200_6500)), PRODUCT_97(97, "LIFX A19", new Features(TR_1500_9000, COLOR)), PRODUCT_98(98, "LIFX BR30", new Features(TR_1500_9000, COLOR)), - PRODUCT_99(99, "LIFX Clean", new Features(TR_1500_9000, HEV)), + PRODUCT_99(99, "LIFX Clean", new Features(TR_1500_9000, COLOR, HEV)), PRODUCT_100(100, "LIFX Filament Clear", new Features(TR_2100_2100)), PRODUCT_101(101, "LIFX Filament Amber", new Features(TR_2000_2000)), PRODUCT_109(109, "LIFX A19 Night Vision", new Features(TR_1500_9000, COLOR, INFRARED)),