From a016945dd93b5df5247edbe159c6372da7507868 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Sun, 17 Jul 2022 16:45:07 +0200 Subject: [PATCH] changed cleanup time MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ebbe Baß --- test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.py b/test.py index 03f5be4..d04439e 100644 --- a/test.py +++ b/test.py @@ -10,7 +10,7 @@ GPIO.setup(7, GPIO.OUT) GPIO.output(7, GPIO.HIGH) time.sleep(1) GPIO.output(7, GPIO.LOW) -time.sleep(1) +time.sleep(5) GPIO.cleanup() # def debug_print(message: str):