Signed-off-by: Ebbe Baß <ebbe@ping-mee.de>
master
Ebbe Baß 2022-07-14 10:59:54 +02:00
parent ae0e0725d8
commit f0805e4c08
1 changed files with 2 additions and 2 deletions

View File

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