Added Wait Command, Works

This commit is contained in:
Aarav Shah
2020-02-21 17:48:05 -07:00
parent 73e2d0fd59
commit e5a9d0c364
3 changed files with 66 additions and 3 deletions
@@ -388,7 +388,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);
}