From f2d59fac94b812f041d417a5bb34446e65844c77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Odd=20Str=C3=A5b=C3=B8?= Date: Fri, 8 Dec 2023 20:51:58 +0100 Subject: [PATCH] Correct ACTION_WRITE --- srnemqtt/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srnemqtt/constants.py b/srnemqtt/constants.py index 2a13eac..a68bb5c 100644 --- a/srnemqtt/constants.py +++ b/srnemqtt/constants.py @@ -5,7 +5,7 @@ MAC = "DC:0D:30:9C:61:BA" # read_service = "0000fff0-0000-1000-8000-00805f9b34fb" ACTION_READ = 0x03 -ACTION_WRITE = 0x03 +ACTION_WRITE = 0x06 POSSIBLE_MARKER = (0x01, 0xFD, 0xFE, 0xFF)