Soldering

This commit is contained in:
tilman
2016-12-18 01:59:54 +01:00
parent 65ffaa1c9d
commit ecd007012e
8 changed files with 17 additions and 45 deletions
+3 -3
View File
@@ -3,10 +3,10 @@ import time
GPIO.setwarnings(False)
GPIO.setmode(GPIO.BCM)
GPIO.setup(24, GPIO.OUT)
GPIO.setup(22, GPIO.OUT)
while True:
GPIO.output(24, True)
GPIO.output(22, True)
time.sleep(1)
GPIO.output(24, False)
GPIO.output(22, False)
time.sleep(1)