Delete methods in Shooter subsystem, add shooter getter method
[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/**
27d2386f 6 * This command stops the fly wheel. Do not call unless the trigger button has
7 * been released.
973f0ac4 8 *
27d2386f 9 *
973f0ac4 10 * @author Shaina
05a85c82 11 */
809609c9 12public class StopFlyWheel extends Command {
973f0ac4 13 public StopFlyWheel() {
14
15 }
16
17 // Called just before this Command runs the first time
18 @Override
19 protected void initialize() {
20 }
21
22 // Called repeatedly when this Command is scheduled to run
23 @Override
24 protected void execute() {
25 }
26
27 // Called once after isFinished returns true
28 @Override
29 protected void end() {
30 }
31
32 // Called when another command which requires one or more of the same
33 // subsystems is scheduled to run
34 @Override
35 protected void interrupted() {
36 }
37
38 @Override
39 protected boolean isFinished() {
40 // TODO Auto-generated method stub
41 return false;
42 }
809609c9 43
44}