Fix conflicts from rebase
[3501/2017steamworks] / src / org / usfirst / frc / team3501 / robot / commands / driving / DriveDistance.java
index b569958fafa4cb432d120f85a4b9981fed390e80..ed1347f7325be8efe98cf9713558645cb854cd99 100755 (executable)
@@ -30,7 +30,7 @@ public class DriveDistance extends Command {
   private double driveI;
   private double driveD;
 
-  public DriveDistance(double distance, double maxTimeOut) {
+  public DriveDistance(double distance, double motorVal) {
     requires(driveTrain);
     this.maxTimeOut = maxTimeOut;
     this.target = distance;
@@ -76,6 +76,7 @@ public class DriveDistance extends Command {
     this.driveTrain.setMotorValues(leftDrive, rightDrive);
 
     driveTrain.printEncoderOutput();
+    // System.out.println("turn: " + xVal);
   }
 
   @Override