shooter code review changes
[3501/2017steamworks] / src / org / usfirst / frc / team3501 / robot / commands / shooter / RunIndexWheelContinuous.java
CommitLineData
809609c9 1package org.usfirst.frc.team3501.robot.commands.shooter;
2
210ebccb 3import org.usfirst.frc.team3501.robot.Robot;
ad7e6b1e 4import org.usfirst.frc.team3501.robot.subsystems.Shooter;
210ebccb 5
809609c9 6import edu.wpi.first.wpilibj.command.Command;
7
8/**
d4507ede 9 * This command runs index wheel continuously when OI button managing index
10 * wheel is pressed. The command will run the index wheel motor until the button
89a76b33 11 * triggering it is released.
357feb5c 12 *
d4507ede 13 * Should only be run from the operator interface.
14 *
973f0ac4 15 * pre-condition: This command must be run by a button in OI with
16 * button.whileHeld(...).
17 *
27d2386f 18 * @author Shaina
809609c9 19 */
20public class RunIndexWheelContinuous extends Command {
ad7e6b1e 21 private Shooter shooter = Robot.getShooter();
4f2fa45c 22
b7ef589a 23 /**
24 * See JavaDoc comment in class for details
25 *
26 * @param motorVal
27 * value range from -1 to 1
28 */
ad7e6b1e 29 public RunIndexWheelContinuous() {
00f515a1 30 requires(shooter);
4f2fa45c 31 }
32
33 // Called just before this Command runs the first time
34 @Override
35 protected void initialize() {
36 }
37
38 // Called repeatedly when this Command is scheduled to run
39 @Override
40 protected void execute() {
d7042bec 41 double shooterSpeed = shooter.getShooterRPM();
f625e57a
CZ
42 if (shooterSpeed > 0)
43 shooter.runIndexWheel();
4f2fa45c 44 }
45
46 // Called once after isFinished returns true
47 @Override
48 protected void end() {
135022bc 49 shooter.stopIndexWheel();
4f2fa45c 50 }
51
52 // Called when another command which requires one or more of the same
53 // subsystems is scheduled to run
54 @Override
55 protected void interrupted() {
210ebccb 56 end();
4f2fa45c 57 }
58
59 @Override
60 protected boolean isFinished() {
2a9dabb1 61 return false;
adfc0171 62
4f2fa45c 63 }
809609c9 64
65}