X-Git-Url: http://challenge-bot.com/repos/?a=blobdiff_plain;f=src%2Forg%2Fusfirst%2Ffrc%2Fteam3501%2Frobot%2Fcommands%2Fdriving%2FTimeDrive.java;h=d0104a84415055d5eca765434e4feabf438e5355;hb=b081e34b72803bc0b4ec11f0ab7676596da59fde;hp=62805410ab37f7fe205ddd1507c25646dc69f47e;hpb=cc42bd52547752b439e6a23dc0b7d19c3c5da6cb;p=3501%2F2017steamworks diff --git a/src/org/usfirst/frc/team3501/robot/commands/driving/TimeDrive.java b/src/org/usfirst/frc/team3501/robot/commands/driving/TimeDrive.java index 6280541..d0104a8 100755 --- a/src/org/usfirst/frc/team3501/robot/commands/driving/TimeDrive.java +++ b/src/org/usfirst/frc/team3501/robot/commands/driving/TimeDrive.java @@ -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