From 0236cb9c7deebcea25747e7f50da67b563668dea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Mon, 11 Jul 2022 01:36:59 +0200 Subject: [PATCH] fixxed count up MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ebbe Baß --- test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.py b/test.py index 12bf734..db06f7c 100644 --- a/test.py +++ b/test.py @@ -11,7 +11,7 @@ import time count = 2 i2c = busio.I2C(board.SCL, board.SDA) while True: - count =+ 1 + count += 1 if count != 77: print(hex(count)) try: