diff --git a/zhaquirks/philips/hue_light.py b/zhaquirks/philips/hue_light.py index ef60d30992..130593fb0f 100644 --- a/zhaquirks/philips/hue_light.py +++ b/zhaquirks/philips/hue_light.py @@ -169,3 +169,36 @@ .replaces(PhilipsHueLightCluster, endpoint_id=11) .add_to_registry() ) + +( + QuirkBuilder() + .applies_to(SIGNIFY, "LCD003") + .friendly_name( + model="Hue Akari downlight", + manufacturer="Philips", + ) + .replaces(PhilipsHueLightCluster, endpoint_id=11) + .add_to_registry() +) + +( + QuirkBuilder() + .applies_to(PHILIPS, "1743530P7") + .friendly_name( + model="Hue Discover outdoor floodlight", + manufacturer="Philips", + ) + .replaces(PhilipsHueLightCluster, endpoint_id=11) + .add_to_registry() +) + +( + QuirkBuilder() + .applies_to(SIGNIFY, "LCL008") + .friendly_name( + model="Hue Lightstrip Solo", + manufacturer="Philips", + ) + .replaces(PhilipsHueLightCluster, endpoint_id=11) + .add_to_registry() +)