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