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