Yes, you can have different speeds and velocities set for each stepper channel. You can see our
API for a full list of available properties to set. For example,
Code: Select all
stepper1.setAcceleration(10000)
stepper2.setAcceleration(5000)
stepper1.setVelocityLimit(10000)
stepper1.setVelocityLimit(15000)
Note that "Velocity limit" is not the same as actual velocity. If you set the velocity limit to 10000, it means the controller will send out motor step pulses such that it should go no faster than 10,000 sixteenth-steps per second. This means it may go slower than that if something is physically working against the motor. For actual velocity control, you'd need to monitor the physical position of the motor with an encoder and make a control loop.