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