Skip to content

Commit 6b505b7

Browse files
authored
Expose 'multicolor' command on more Hue lights (#4076)
1 parent f738104 commit 6b505b7

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

zhaquirks/philips/hue_light.py

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,28 @@
121121
.add_to_registry()
122122
)
123123

124+
(
125+
QuirkBuilder()
126+
.applies_to(SIGNIFY, "LTA001")
127+
.friendly_name(
128+
model="Hue white ambiance E27 with Bluetooth",
129+
manufacturer="Philips",
130+
)
131+
.replaces(PhilipsHueLightCluster, endpoint_id=11)
132+
.add_to_registry()
133+
)
134+
135+
(
136+
QuirkBuilder()
137+
.applies_to(SIGNIFY, "LWU001")
138+
.friendly_name(
139+
model="Hue P45 light bulb",
140+
manufacturer="Philips",
141+
)
142+
.replaces(PhilipsHueLightCluster, endpoint_id=11)
143+
.add_to_registry()
144+
)
145+
124146
(
125147
QuirkBuilder()
126148
.applies_to(PHILIPS, "7602031P7")
@@ -132,3 +154,18 @@
132154
.replaces(PhilipsHueLightCluster, endpoint_id=11)
133155
.add_to_registry()
134156
)
157+
158+
(
159+
QuirkBuilder()
160+
.applies_to(PHILIPS, "1743130P7")
161+
.applies_to(PHILIPS, "1743430P7")
162+
.applies_to(PHILIPS, "1743230P7")
163+
.applies_to(PHILIPS, "1745430A7")
164+
.applies_to(PHILIPS, "1745430P7")
165+
.friendly_name(
166+
model="Hue Impress outdoor Pedestal",
167+
manufacturer="Philips",
168+
)
169+
.replaces(PhilipsHueLightCluster, endpoint_id=11)
170+
.add_to_registry()
171+
)

0 commit comments

Comments
 (0)