1
0
Fork 0

Make shorter moves

main
Jeff Moe 2023-03-31 11:56:36 -06:00
parent 7942c9e99a
commit ff94a368bb
4 changed files with 4 additions and 4 deletions

View File

@ -29,5 +29,5 @@ GPIO.setup(5, GPIO.OUT) # Pin 29 GPIO5 Left
print("Down GPIO 16")
GPIO.output(16, GPIO.HIGH)
time.sleep(3)
time.sleep(0.2)
GPIO.output(16, GPIO.LOW)

View File

@ -29,5 +29,5 @@ GPIO.setup(5, GPIO.OUT) # Pin 29 GPIO5 Left
print("Left GPIO 5")
GPIO.output(5, GPIO.HIGH)
time.sleep(1)
time.sleep(0.1)
GPIO.output(5, GPIO.LOW)

View File

@ -29,5 +29,5 @@ GPIO.setup(5, GPIO.OUT) # Pin 29 GPIO5 Left
print("Right GPIO 6")
GPIO.output(6, GPIO.HIGH)
time.sleep(1)
time.sleep(0.1)
GPIO.output(6, GPIO.LOW)

View File

@ -29,5 +29,5 @@ GPIO.setup(5, GPIO.OUT) # Pin 29 GPIO5 Left
print("Up GPIO 17")
GPIO.output(17, GPIO.HIGH)
time.sleep(3)
time.sleep(0.2)
GPIO.output(17, GPIO.LOW)