From ece3b055eaf5b9c2ba5e16e4ccc5532803c85c8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Wed, 6 Jul 2022 19:08:31 +0200 Subject: [PATCH] test MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ebbe Baß --- test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test.py b/test.py index f3caa3c..f3abb2e 100644 --- a/test.py +++ b/test.py @@ -10,7 +10,7 @@ pins = [8,10,12,16,18,22,24,26] for pin in pins: print(pin) GPIO.setup(pin, GPIO.OUT) - # GPIO.output(pin, True) - time.sleep(float(0.5)) GPIO.output(pin, False) + time.sleep(float(0.5)) + GPIO.output(pin, True) GPIO.cleanup \ No newline at end of file