X-Git-Url: http://challenge-bot.com/repos/?p=3501%2F2017steamworks;a=blobdiff_plain;f=src%2Forg%2Fusfirst%2Ffrc%2Fteam3501%2Frobot%2Fcommands%2Fshooter%2FRunIndexWheelContinuous.java;h=bf9af68ad85b3c0617672edba540c37aeb7d2989;hp=1bf1c6f0c4941cba314eeff63030e066f345e557;hb=00f515a1e32e2ef2217aa5c981a860ec584f16f1;hpb=292b55d37ff914cf4f094b01b40f4389db29a200 diff --git a/src/org/usfirst/frc/team3501/robot/commands/shooter/RunIndexWheelContinuous.java b/src/org/usfirst/frc/team3501/robot/commands/shooter/RunIndexWheelContinuous.java index 1bf1c6f..bf9af68 100644 --- a/src/org/usfirst/frc/team3501/robot/commands/shooter/RunIndexWheelContinuous.java +++ b/src/org/usfirst/frc/team3501/robot/commands/shooter/RunIndexWheelContinuous.java @@ -27,18 +27,18 @@ public class RunIndexWheelContinuous extends Command { * value range from -1 to 1 */ public RunIndexWheelContinuous() { - + requires(shooter); } // Called just before this Command runs the first time @Override protected void initialize() { - shooter.setIndexWheelMotorVal(shooter.CURRENT_SHOOTING_SPEED); } // Called repeatedly when this Command is scheduled to run @Override protected void execute() { + shooter.setIndexWheelMotorVal(shooter.DEFAULT_INDEXING_SPEED); } // Called once after isFinished returns true