changed pin

Signed-off-by: Ebbe Baß <ebbe@ping-mee.de>
master
Ebbe Baß 2022-07-06 18:49:10 +02:00
parent d963c9e689
commit 55747b4228
1 changed files with 3 additions and 3 deletions

View File

@ -5,10 +5,10 @@ import RPi.GPIO as GPIO
GPIO.setmode(GPIO.BCM)
GPIO.setup(24, GPIO.OUT)
GPIO.setup(22, GPIO.OUT)
GPIO.output(24, GPIO.HIGH)
GPIO.output(22, GPIO.HIGH)
time.sleep(5)
GPIO.output(24, GPIO.LOW)
GPIO.output(22, GPIO.LOW)
GPIO.cleanup