From bea803b86fd9b109932f27638019677f7a7de12e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Sun, 17 Jul 2022 17:14:09 +0200 Subject: [PATCH] added cooldown 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 f2ff708..8fbeb3e 100644 --- a/test.py +++ b/test.py @@ -10,7 +10,7 @@ GPIO.setup(4, GPIO.OUT) GPIO.output(4, GPIO.HIGH) time.sleep(1) GPIO.output(4, GPIO.LOW) -time.sleep(1) +time.sleep(5) GPIO.cleanup() # def debug_print(message: str):