next test

Signed-off-by: Ebbe Baß <ebbe@ping-mee.de>
master
Ebbe Baß 2022-07-06 18:44:49 +02:00
parent 41410cdfd5
commit 77a299ec9b
1 changed files with 2 additions and 2 deletions

View File

@ -10,8 +10,8 @@ pins = [8,10,12,14,18,20,22,24]
for pin in pins:
GPIO.setup(pin, GPIO.OUT)
GPIO.output(8, GPIO.HIGH)
GPIO.output(10, GPIO.HIGH)
time.sleep(30)
GPIO.output(8, GPIO.LOW)
GPIO.output(10, GPIO.LOW)
GPIO.cleanup