diff --git a/zhaquirks/philips/hue_light.py b/zhaquirks/philips/hue_light.py index 8e4b01605d..ef60d30992 100644 --- a/zhaquirks/philips/hue_light.py +++ b/zhaquirks/philips/hue_light.py @@ -121,6 +121,28 @@ .add_to_registry() ) +( + QuirkBuilder() + .applies_to(SIGNIFY, "LTA001") + .friendly_name( + model="Hue white ambiance E27 with Bluetooth", + manufacturer="Philips", + ) + .replaces(PhilipsHueLightCluster, endpoint_id=11) + .add_to_registry() +) + +( + QuirkBuilder() + .applies_to(SIGNIFY, "LWU001") + .friendly_name( + model="Hue P45 light bulb", + manufacturer="Philips", + ) + .replaces(PhilipsHueLightCluster, endpoint_id=11) + .add_to_registry() +) + ( QuirkBuilder() .applies_to(PHILIPS, "7602031P7") @@ -132,3 +154,18 @@ .replaces(PhilipsHueLightCluster, endpoint_id=11) .add_to_registry() ) + +( + QuirkBuilder() + .applies_to(PHILIPS, "1743130P7") + .applies_to(PHILIPS, "1743430P7") + .applies_to(PHILIPS, "1743230P7") + .applies_to(PHILIPS, "1745430A7") + .applies_to(PHILIPS, "1745430P7") + .friendly_name( + model="Hue Impress outdoor Pedestal", + manufacturer="Philips", + ) + .replaces(PhilipsHueLightCluster, endpoint_id=11) + .add_to_registry() +)