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