How do you determine maximum speed of a motor? #781
Answered
by
laurensvalk
hmillington
asked this question in
Q&A
-
|
How do you determine maximum speed of a motor? |
Beta Was this translation helpful? Give feedback.
Answered by
laurensvalk
Nov 8, 2022
Replies: 1 comment
-
|
You can get the motor limits like this: from pybricks.pupdevices import Motor
from pybricks.parameters import Port
my_motor = Motor(Port.A)
max_speed, acceleration, max_torque = my_motor.control.limits()
print("Max speed (deg/s):", max_speed) |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
hmillington
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can get the motor limits like this: