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