implement tank drive and toggle winch
[3501/2017steamworks] / src / org / usfirst / frc / team3501 / robot / commands / driving / JoystickDrive.java
index a56b1f3549a7b0017485fcd3764bd34b0a6249ff..9007a545fce287951f650cad98ffa08bf9bd3515 100755 (executable)
@@ -7,8 +7,8 @@ import edu.wpi.first.wpilibj.command.Command;
 
 /**
  * This command will run throughout teleop and listens for joystick inputs to
- * drive the driveTrain. This never finishes until teleop ends.
- * - works in conjunction with OI.java
+ * drive the driveTrain. This never finishes until teleop ends. - works in
+ * conjunction with OI.java
  */
 public class JoystickDrive extends Command {
 
@@ -22,10 +22,13 @@ public class JoystickDrive extends Command {
 
   @Override
   protected void execute() {
-    final double thrust = OI.rightJoystick.getY();
-    final double twist = OI.rightJoystick.getTwist();
-
-    Robot.getDriveTrain().joystickDrive(-thrust, -twist);
+    // final double thrust = OI.rightJoystick.getY();
+    // final double twist = OI.rightJoystick.getTwist();
+    //
+    // Robot.getDriveTrain().joystickDrive(-thrust, -twist);
+    double left = OI.leftJoystick.getY();
+    double right = OI.rightJoystick.getY();
+    Robot.getDriveTrain().tankDrive(left, right);
   }
 
   @Override