From ed7126122ef4b5518eb4e2258873012dbd8f5fe2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Wed, 6 Jul 2022 18:53:08 +0200 Subject: [PATCH] changed pin MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ebbe Baß --- test.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test.py b/test.py index ad16973..35c71bf 100644 --- a/test.py +++ b/test.py @@ -5,10 +5,10 @@ import RPi.GPIO as GPIO GPIO.setmode(GPIO.BOARD) -GPIO.setup(22, GPIO.OUT) +GPIO.setup(8, GPIO.OUT) -GPIO.output(22, GPIO.HIGH) +GPIO.output(8, GPIO.HIGH) time.sleep(5) -GPIO.output(22, GPIO.LOW) +GPIO.output(8, GPIO.LOW) GPIO.cleanup \ No newline at end of file