From 55747b42289e913e97622bb16c5673727c05b1b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Wed, 6 Jul 2022 18:49:10 +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 bf335ba..1c59530 100644 --- a/test.py +++ b/test.py @@ -5,10 +5,10 @@ import RPi.GPIO as GPIO GPIO.setmode(GPIO.BCM) -GPIO.setup(24, GPIO.OUT) +GPIO.setup(22, GPIO.OUT) -GPIO.output(24, GPIO.HIGH) +GPIO.output(22, GPIO.HIGH) time.sleep(5) -GPIO.output(24, GPIO.LOW) +GPIO.output(22, GPIO.LOW) GPIO.cleanup \ No newline at end of file