From 295a413e891d4374e47ad7ce3a1ddab4a6a06726 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Wed, 6 Jul 2022 19:12:51 +0200 Subject: [PATCH] changed some values 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 513dbea..2616042 100644 --- a/test.py +++ b/test.py @@ -11,7 +11,7 @@ pins = [8,10,12,16,18,22,24,26] for pin in pins: print(pin) GPIO.setup(pin, GPIO.OUT) - GPIO.output(pin, False) + GPIO.output(pin, GPIO.LOW) time.sleep(float(0.5)) - GPIO.output(pin, True) + GPIO.output(pin, GPIO.LOW) GPIO.cleanup \ No newline at end of file