How do I get my 6 motor drive chassis coded to arcade drive in my vex v5 pros code. I have it in the ez template and it is auto to tank drive but I need arcade drive. What code do I need to put in to change it to arcade split drive.
If you can, try to manually code it. It’s only arcade drive, so it won’t be too hard:
void arcade() {
int leftD = controller.getLeftY();
int rightD = controller.getRightY();
leftDrive.setSpeed(leftD);
rightDrive.setSpeed(rightD);
drivetrain.drive();
}
This is some pseudocode for a basic arcade drive. Otherwise, I don’t know how to do a template for it.
This is actually on me, I messed up the two! I mixed up tank and arcade.
chassis.opcontrol_arcade_standard(ez::SPLIT);
That’s the function for EZ Template for arcade.
Please check this website out if you have anymore questions. Control Schemes | EZ-Template

