b84a1920b9cbf90a3509c108522fb1e8a1169fb5
[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 }
27
28 // Make this return true when this Command no longer needs to run execute()
29 @Override
30 protected boolean isFinished() {
31 return false;
32 }
33
34 // Called once after isFinished returns true
35 @Override
36 protected void end() {
37 }
38
39 // Called when another command which requires one or more of the same
40 // subsystems is scheduled to run
41 @Override
42 protected void interrupted() {
43 }
44 }