Edit JavaDoc comments in shooter commands
[3501/2017steamworks] / src / org / usfirst / frc / team3501 / robot / commands / shooter / StopIndexWheel.java
CommitLineData
809609c9 1package org.usfirst.frc.team3501.robot.commands.shooter;
2
3import edu.wpi.first.wpilibj.command.Command;
4
5/**
27d2386f 6 * This command stops the index wheel. Do not call unless the trigger button has
7 * been released.
973f0ac4 8 *
9 * @author Shaina
809609c9 10 */
11public class StopIndexWheel extends Command {
973f0ac4 12 public StopIndexWheel() {
13
14 }
15
16 // Called just before this Command runs the first time
17 @Override
18 protected void initialize() {
19 }
20
21 // Called repeatedly when this Command is scheduled to run
22 @Override
23 protected void execute() {
24 }
25
26 // Called once after isFinished returns true
27 @Override
28 protected void end() {
29 }
30
31 // Called when another command which requires one or more of the same
32 // subsystems is scheduled to run
33 @Override
34 protected void interrupted() {
35 }
36
37 @Override
38 protected boolean isFinished() {
39 // TODO Auto-generated method stub
40 return false;
41 }
809609c9 42
43}