mirror of https://github.com/Trivernis/spydian.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
374 B
Python
28 lines
374 B
Python
import Adafruit_PCA9685 as ServoLib
|
|
import sys
|
|
|
|
pwm = ServoLib.PCA9685()
|
|
pwm.set_pwm_freq(60)
|
|
|
|
|
|
def left():
|
|
pwm.set_pwm(0, 0, 261)
|
|
|
|
|
|
def right():
|
|
pwm.set_pwm(0, 0, 479)
|
|
|
|
|
|
def reset():
|
|
pwm.set_pwm(0, 0, 370)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
args = sys.argv
|
|
if 'left' in args:
|
|
left()
|
|
elif 'right' in args:
|
|
right()
|
|
else:
|
|
reset()
|