-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
kit.continuous_servo[1].throttle = None
doesn't work like kit.servo[1].angle = None
#74
Comments
kit.continuous_servo[1].throttle = None
doesn't work like kit.servo[1[.angle = None
kit.continuous_servo[1].throttle = None
doesn't work like kit.servo[1].angle = None
Servo handles None here: Adafruit_CircuitPython_Motor/adafruit_motor/servo.py Lines 131 to 135 in cc5fa11
which passes to BaseServo_ here: Adafruit_CircuitPython_Motor/adafruit_motor/servo.py Lines 66 to 70 in cc5fa11
and here it is in continious servo Adafruit_CircuitPython_Motor/adafruit_motor/servo.py Lines 154 to 160 in cc5fa11
but it doesnt work |
some context: I am using servokit continiousservo throttle to drive blue robotics basic esc's I am trying to make the motors (connected to the esc) stop spinning and the esc to do its disarmed chime (which releases hold power on the motors) |
when I try to use
kit.continuous_servo[1].throttle = None
I get this error
The text was updated successfully, but these errors were encountered: