From 2491aa0dfcb959b2fdd494c13cda65bf8d2159ac Mon Sep 17 00:00:00 2001 From: Jc2k Date: Fri, 29 Nov 2024 11:56:16 +0000 Subject: [PATCH] Add missing meshcop TLV records (#388) --- aiohomekit/meshcop.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/aiohomekit/meshcop.py b/aiohomekit/meshcop.py index d65d8928..5b650df5 100644 --- a/aiohomekit/meshcop.py +++ b/aiohomekit/meshcop.py @@ -65,3 +65,9 @@ class Meshcop(TLVStruct): energy_list: bytes = tlv_entry(57) discoveryrequest: bytes = tlv_entry(128) discoveryresponse: bytes = tlv_entry(129) + + # Seen in a dataset imported through iOS companion app + wakeup_channel: bytes = tlv_entry(74) + discovery_request: bytes = tlv_entry(128) + discovery_response: bytes = tlv_entry(129) + joiner_advertisement: bytes = tlv_entry(241)