From 2ad871446f2a57f674ba6ed52bb6d20475d54b3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Sun, 17 Jul 2022 19:37:20 +0200 Subject: [PATCH] changed some shit 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 d197eda..3c4b1d4 100644 --- a/test.py +++ b/test.py @@ -6,9 +6,9 @@ import RPi.GPIO as GPIO GPIO.setmode(GPIO.BCM) GPIO.setup(19, GPIO.OUT) -GPIO.output(19, GPIO.HIGH) -time.sleep(1) GPIO.output(19, GPIO.LOW) +time.sleep(1) +GPIO.output(19, GPIO.HIGH) time.sleep(5) GPIO.cleanup()