From a39af17566c97edd0f5c9f5da925af8a30bdbfd2 Mon Sep 17 00:00:00 2001 From: Florent de Lamotte Date: Mon, 5 May 2025 14:21:26 +0200 Subject: [PATCH] update resp_codes --- src/meshcore/packets.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/meshcore/packets.py b/src/meshcore/packets.py index fb134cc..9e3996c 100644 --- a/src/meshcore/packets.py +++ b/src/meshcore/packets.py @@ -16,6 +16,14 @@ class PacketType(Enum): CONTACT_URI = 11 BATTERY = 12 DEVICE_INFO = 13 + PRIVATE_KEY = 14 + DISABLED = 15 + CONTACT_MSG_RECV_V3 = 16 + CHANNEL_MSG_RECV_V3 = 17 + CHANNEL_INFO = 18 + SIGN_START = 19 + SIGNATURE = 20 + CUSTOM_VARS = 21 CLI_RESPONSE = 50 # Push notifications @@ -30,4 +38,4 @@ class PacketType(Enum): LOG_DATA = 0x88 TRACE_DATA = 0x89 PUSH_CODE_NEW_ADVERT = 0x8A - TELEMETRY_RESPONSE = 0x8B \ No newline at end of file + TELEMETRY_RESPONSE = 0x8B