From f0805e4c08de1f68f76238366a51be00a74ee45c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Thu, 14 Jul 2022 10:59:54 +0200 Subject: [PATCH] test 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 a09a54d..8b9cd97 100644 --- a/test.py +++ b/test.py @@ -6,10 +6,10 @@ import RPi.GPIO as GPIO GPIO.setmode(GPIO.BCM) GPIO.setup(4, GPIO.OUT) -GPIO.output(4, GPIO.LOW) -time.sleep(1) GPIO.output(4, GPIO.HIGH) time.sleep(1) +GPIO.output(4, GPIO.LOW) +time.sleep(1) GPIO.cleanup() # def debug_print(message: str):