How Can You Make 2 Things Run At Once In Vexcode V5

I need to have an intake motor and the drivetrain to move at the same time. Anybody know how to?

You can start the intake running with a spin command, then have the drivetrain do whatever. In short, the code would be like:

intake.spin(forward);
drivetrain.something(insert code);

2 Likes

It seems like you have already started your code. If you post your code you will get better help.

2 Likes