testing TimeDrive
[3501/2017steamworks] / src / org / usfirst / frc / team3501 / robot / commands / driving / TimeDrive.java
index 62805410ab37f7fe205ddd1507c25646dc69f47e..d0104a84415055d5eca765434e4feabf438e5355 100755 (executable)
@@ -5,13 +5,15 @@ import org.usfirst.frc.team3501.robot.Robot;
 import edu.wpi.first.wpilibj.Timer;
 import edu.wpi.first.wpilibj.command.Command;
 
-/**
+/***
  * This commands make the robot drive for a specified time with the motors set
  * at a specified value between 1 and -1
  *
  * parameters:
  * time: how long the robot should drive for - in seconds
  * motorVal: the motor input to set the motors to
+ *
+ *
  */
 public class TimeDrive extends Command {
   Timer timer;
@@ -28,11 +30,12 @@ public class TimeDrive extends Command {
   @Override
   protected void initialize() {
     timer.start();
-    Robot.getDriveTrain().setMotorValues(motorVal, motorVal);
   }
 
   @Override
   protected void execute() {
+    Robot.getDriveTrain().setMotorValues(motorVal, motorVal);
+
   }
 
   @Override