From 5a1dbf1b21e252fd0a4415595a43772e243fbfd5 Mon Sep 17 00:00:00 2001 From: Nikita Uvarov Date: Mon, 19 May 2025 11:08:29 +0200 Subject: [PATCH] Add Philips Hue lights --- zhaquirks/philips/hue_light.py | 37 ++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) 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() +)