From 77a299ec9b32ad5196874ae8a147101d0cfb420f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Wed, 6 Jul 2022 18:44:49 +0200 Subject: [PATCH] next 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 bd0172a..b1c7f41 100644 --- a/test.py +++ b/test.py @@ -10,8 +10,8 @@ pins = [8,10,12,14,18,20,22,24] for pin in pins: GPIO.setup(pin, GPIO.OUT) -GPIO.output(8, GPIO.HIGH) +GPIO.output(10, GPIO.HIGH) time.sleep(30) -GPIO.output(8, GPIO.LOW) +GPIO.output(10, GPIO.LOW) GPIO.cleanup \ No newline at end of file