From 5104d07a344973199e7829514afb0f037782d514 Mon Sep 17 00:00:00 2001 From: Paul V Craven Date: Thu, 4 Feb 2021 14:21:47 -0600 Subject: [PATCH] Update manchester_decoding_5.py Fix bug --- manchester_decoding_5.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manchester_decoding_5.py b/manchester_decoding_5.py index 4e6a0e1..37c830e 100644 --- a/manchester_decoding_5.py +++ b/manchester_decoding_5.py @@ -64,7 +64,7 @@ def data_callback(channel): data_callback.last_call = time.time() # Current bit we are on data_callback.bit_count = 7 -# Current byte, with all 9 bits +# Current byte, with all 8 bits data_callback.my_byte = 0 GPIO.setmode(GPIO.BCM)