How do I limit the amount of rotations for my autonomous? This is what I currently have:
autonomous();
FrontLeft.spin(vex::directionType::fwd, 80, vex::velocityUnits::pct);
BackLeft.spin(vex::directionType::fwd, 80, vex::velocityUnits::pct);
FrontRight.spin(vex::directionType::fwd, 80, vex::velocityUnits::pct);
BackLeft.spin(vex::directionType::fwd, 80, vex::velocityUnits::pct);
LeftIntake.spin(vex::directionType::fwd, 80, vex::velocityUnits::pct);
RightIntake.spin(vex::directionType::fwd, 80, vex::velocityUnits::pct);
}