Fixed Drive Train the right way, switched gear buttons for Josh

This commit is contained in:
Aarav Shah
2020-02-28 18:11:11 -07:00
parent c572182678
commit d83d21e062
3 changed files with 20 additions and 14 deletions
@@ -322,7 +322,7 @@ public class Drive extends SubsystemBase {
* using the Differential Drive class to manage the two inputs
*/
public void driveWithInput(double move, double steer) {
m_driveTrain.arcadeDrive(move, steer);
m_driveTrain.arcadeDrive(steer, move);
m_leftBackMotor.follow(m_leftFrontMotor);
m_rightBackMotor.follow(m_rightFrontMotor);
}