From 5f1a7f27284b2e33f7b82b7bb178a3cf59f90409 Mon Sep 17 00:00:00 2001 From: Nikita Uvarov Date: Thu, 12 Dec 2024 01:25:45 +0100 Subject: [PATCH] Add support for Nimly easyCodeTouch_v1 lock (#3580) --- zhaquirks/nimly/lock.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/zhaquirks/nimly/lock.py b/zhaquirks/nimly/lock.py index d7d324b661..6e762b2f81 100644 --- a/zhaquirks/nimly/lock.py +++ b/zhaquirks/nimly/lock.py @@ -27,16 +27,17 @@ ( QuirkBuilder(NIMLY, "EasyFingerTouch") - .also_applies_to(NIMLY, "EasyCodeTouch") + .applies_to(NIMLY, "EasyCodeTouch") + .applies_to(NIMLY, "easyCodeTouch_v1") .node_descriptor(NIMLY_LOCK_NODE_DESCRIPTOR) .add_to_registry() ) ( QuirkBuilder(NIMLY, "NimlyPRO") - .also_applies_to(NIMLY, "NimlyCode") - .also_applies_to(NIMLY, "NimlyTouch") - .also_applies_to(NIMLY, "NimlyIn") + .applies_to(NIMLY, "NimlyCode") + .applies_to(NIMLY, "NimlyTouch") + .applies_to(NIMLY, "NimlyIn") .node_descriptor(NIMLY_LOCK_NODE_DESCRIPTOR) .replaces(DoublingPowerConfigurationCluster, endpoint_id=11) .add_to_registry()