We cant get two motors to run on the same time during autonomous period. have any ideas?
Are you using v5 text? You can use motor_group to pair the motors or just have two statements like so:
MotorL.spin(params);
MotorR.spin(params);
1 Like
what do you mean motor group?
im using v5 text.
Motor_goup is a way to “make” 2 motors into 1 motor. (Not actually, but it pairs them together in code)
motor_group left= motor_group(FrontLeft, BackLeft);
This code combines the motor into a motor_group called left.
Instead of
FrontLeft.spin();
BackLeft.spin();
You can now use
left.spin();
2 Likes
Do you mean with the new VEXcode update in 1.0.1?
I explain how to run 2 motors simultaneously, how to make motor groups, and drivetrains in this post:
1 Like
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.