-
Notifications
You must be signed in to change notification settings - Fork 712
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add support for aqara ceiling light L1-350 (#2649)
This quirk adds support for power on behavior of the device
- Loading branch information
Dmitry Berezovsky
committed
Oct 21, 2023
1 parent
28da816
commit 2da19bd
Showing
3 changed files
with
117 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import zhaquirks | ||
|
||
zhaquirks.setup() | ||
|
||
|
||
def test_aqara_acn003_signature_match(assert_signature_matches_quirk): | ||
signature = { | ||
"node_descriptor": "NodeDescriptor(logical_type=<LogicalType.Router: 1>, complex_descriptor_available=0, user_descriptor_available=0, reserved=0, aps_flags=0, frequency_band=<FrequencyBand.Freq2400MHz: 8>, mac_capability_flags=<MACCapabilityFlags.FullFunctionDevice|MainsPowered|RxOnWhenIdle|AllocateAddress: 142>, manufacturer_code=4447, maximum_buffer_size=82, maximum_incoming_transfer_size=82, server_mask=11264, maximum_outgoing_transfer_size=82, descriptor_capability_field=<DescriptorCapability.NONE: 0>, *allocate_address=True, *is_alternate_pan_coordinator=False, *is_coordinator=False, *is_end_device=False, *is_full_function_device=True, *is_mains_powered=True, *is_receiver_on_when_idle=True, *is_router=True, *is_security_capable=False)", | ||
"endpoints": { | ||
"1": { | ||
"profile_id": 0x0104, | ||
"device_type": "0x0102", | ||
"in_clusters": [ | ||
"0x0000", | ||
"0x0003", | ||
"0x0004", | ||
"0x0005", | ||
"0x0006", | ||
"0x0008", | ||
"0x0300", | ||
"0xfcc0", | ||
], | ||
"out_clusters": ["0x000a", "0x0019"], | ||
} | ||
}, | ||
"manufacturer": "Aqara", | ||
"model": "lumi.light.acn003", | ||
"class": "aqara_light.LumiLightAcn003", | ||
} | ||
|
||
assert_signature_matches_quirk( | ||
zhaquirks.xiaomi.aqara.light_acn.LumiLightAcn003, signature | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -102,7 +102,6 @@ | |
descriptor_capability_field=0, | ||
) | ||
|
||
|
||
_LOGGER = logging.getLogger(__name__) | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
from zigpy import types as t | ||
from zigpy.profiles import zha | ||
from zigpy.zcl.clusters.general import ( | ||
Groups, | ||
Identify, | ||
LevelControl, | ||
OnOff, | ||
Ota, | ||
Scenes, | ||
Time, | ||
) | ||
from zigpy.zcl.clusters.lighting import Color | ||
|
||
from zhaquirks.const import ( | ||
DEVICE_TYPE, | ||
ENDPOINTS, | ||
INPUT_CLUSTERS, | ||
MODELS_INFO, | ||
OUTPUT_CLUSTERS, | ||
PROFILE_ID, | ||
) | ||
from zhaquirks.xiaomi import BasicCluster, XiaomiAqaraE1Cluster, XiaomiCustomDevice | ||
|
||
|
||
class OppleClusterLight(XiaomiAqaraE1Cluster): | ||
"""Add Opple cluster for power outage memory attribute.""" | ||
|
||
attributes = { | ||
0x0201: ("power_outage_memory", t.Bool, True), | ||
} | ||
|
||
|
||
class LumiLightAcn003(XiaomiCustomDevice): | ||
"""Aqara ceiling light L1-350 also known as Xiaomi ZNXDD01LM. | ||
Provides dimmable light control with color temperature setting. | ||
This quirk adds support for power on behavior by adding OppleCluster.power_outage_memory attribute. | ||
""" | ||
|
||
signature = { | ||
MODELS_INFO: [ | ||
("Aqara", "lumi.light.acn003"), | ||
], | ||
ENDPOINTS: { | ||
1: { | ||
PROFILE_ID: zha.PROFILE_ID, | ||
DEVICE_TYPE: zha.DeviceType.COLOR_DIMMABLE_LIGHT, | ||
INPUT_CLUSTERS: [ | ||
BasicCluster.cluster_id, # 0x0000 | ||
Identify.cluster_id, # 0x0003 | ||
Groups.cluster_id, # 0x0004 | ||
Scenes.cluster_id, # 0x0005 | ||
OnOff.cluster_id, # 0x0006 | ||
LevelControl.cluster_id, # 0x0008 | ||
Color.cluster_id, # 0x0300 | ||
OppleClusterLight.cluster_id, # 0xFCC0 - Manufacture Specific | ||
], | ||
OUTPUT_CLUSTERS: [ | ||
Time.cluster_id, # 0x000A | ||
Ota.cluster_id, # 0x0019 | ||
], | ||
} | ||
}, | ||
} | ||
replacement = { | ||
ENDPOINTS: { | ||
1: { | ||
INPUT_CLUSTERS: [ | ||
BasicCluster, | ||
Identify.cluster_id, # 0x0003 | ||
Groups.cluster_id, # 0x0004 | ||
Scenes.cluster_id, # 0x0005 | ||
OnOff.cluster_id, # 0x0006 | ||
LevelControl.cluster_id, # 0x0008 | ||
Color.cluster_id, # 0x0300 | ||
OppleClusterLight, | ||
], | ||
OUTPUT_CLUSTERS: [ | ||
Time.cluster_id, # 0x000A | ||
Ota.cluster_id, # 0x0019 | ||
], | ||
} | ||
} | ||
} |