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.
23 lines
361 B
Python
23 lines
361 B
Python
7 years ago
|
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()
|