From 40fae8aa14e072151e1a79b886fc7578b21f6b63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Wed, 6 Jul 2022 18:57:48 +0200 Subject: [PATCH] added debug MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ebbe Baß --- test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test.py b/test.py index de3fcd1..c31d01d 100644 --- a/test.py +++ b/test.py @@ -8,6 +8,7 @@ GPIO.setmode(GPIO.BOARD) pins = [8,10,12,14,18,20,22,24] for pin in pins: + print(pin) GPIO.setup(pin, GPIO.OUT) GPIO.output(pin, GPIO.LOW) time.sleep(1)