a75a4bb28b4b665596441e1da874f895876ef67c
[3501/2017steamworks] / src / org / usfirst / frc / team3501 / robot / commands / intake / ReverseIntakeContinuous.java
1 package org.usfirst.frc.team3501.robot.commands.intake;
2
3 import org.usfirst.frc.team3501.robot.Robot;
4
5 import edu.wpi.first.wpilibj.command.Command;
6
7 /**
8 * Reverses the intake until the button triggering this command is released
9 *
10 * pre-condition: button is pressed
11 */
12 public class ReverseIntakeContinuous extends Command {
13
14 public ReverseIntakeContinuous() {
15 requires(Robot.getIntake());
16 }
17
18 // Called just before this Command runs the first time
19 @Override
20 protected void initialize() {
21 }
22
23 // Called repeatedly when this Command is scheduled to run
24 @Override
25 protected void execute() {
26 Robot.getIntake().runReverseIntake();
27 }
28
29 // Make this return true when this Command no longer needs to run execute()
30 @Override
31 protected boolean isFinished() {
32 return false;
33 }
34
35 // Called once after isFinished returns true
36 @Override
37 protected void end() {
38 Robot.getIntake().stopIntake();
39 }
40
41 // Called when another command which requires one or more of the same
42 // subsystems is scheduled to run
43 @Override
44 protected void interrupted() {
45 end();
46 }
47 }