Skip to content

Commit

Permalink
Fix missing controls on ZJ21410 models (#320)
Browse files Browse the repository at this point in the history
  • Loading branch information
bdraco authored Jan 10, 2022
1 parent 1b1fddf commit 6167267
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion flux_led/models_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -464,6 +464,15 @@ def protocol_for_version_num(self, version_num: int) -> str:
auto_on=True,
dimmable_effects=True,
),
LEDENETHardware(
model="AK001-ZJ21410", # seen on newer 0x1E Ceiling lights
chip=LEDENETChip.BL602,
remote_rf=True, # verified
remote_24g=True,
remote_24g_controls=True,
auto_on=True,
dimmable_effects=True,
),
LEDENETHardware(
model="HF-A11", # reported older large box controllers (may be original proto)
chip=LEDENETChip.HFLPB100,
Expand Down Expand Up @@ -875,6 +884,7 @@ def protocol_for_version_num(self, version_num: int) -> str:
),
LEDENETModel(
model_num=0x1E, # Should be the same as 0x35
# 'AK001-ZJ21410' is v9.9 (with RF remote control support + pairing)
models=[],
description="Ceiling Light RGBCW",
always_writes_white_and_colors=False, # Formerly rgbwprotocol
Expand Down Expand Up @@ -924,7 +934,7 @@ def protocol_for_version_num(self, version_num: int) -> str:
model_num=0x33,
# 'AK001-ZJ100' == v3 - WIFI370 version
# 'AK001-ZJ2104' == v7 supports turning on by effect/levels set
# 'AK001-ZJ2101' == v8.61 - no dimmable effects confirmed, confirmed auto on
# 'AK001-ZJ2101' == v8.61, 8.62 (44 key) - no dimmable effects confirmed, confirmed auto on
# "AK001-ZJ2145" == v9 # no rf support!
# "AK001-ZJ2145" == v9.27, 9.33 # w/IR
# "AK001-ZJ2146" == v10.48 # 2.4ghz support
Expand Down

0 comments on commit 6167267

Please sign in to comment.