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):