Reverse the DriveWithJoysticks move axis

This commit is contained in:
ryan123rudder
2020-03-01 14:51:26 -07:00
parent f836dfe472
commit c7e50a3620
@@ -39,7 +39,7 @@ public class DriveWithJoystick extends CommandBase {
// Called every time the scheduler runs while the command is scheduled.
@Override
public void execute() {
double moveInput = -m_controller.getLeftYAxis();
double moveInput = m_controller.getLeftYAxis();
double steerInput = m_controller.getRightXAxis();
double moveOutput = 0;
double steerOutput = 0;