Create command package for shooter and create skeleton commands
[3501/2017steamworks] / src / org / usfirst / frc / team3501 / robot / commands / shooter / RunFlyWheel.java
diff --git a/src/org/usfirst/frc/team3501/robot/commands/shooter/RunFlyWheel.java b/src/org/usfirst/frc/team3501/robot/commands/shooter/RunFlyWheel.java
new file mode 100644 (file)
index 0000000..6a6e950
--- /dev/null
@@ -0,0 +1,21 @@
+package org.usfirst.frc.team3501.robot.commands.shooter;
+
+import edu.wpi.first.wpilibj.command.Command;
+
+/**
+ * Runs the fly wheel at a given speed in () for input time in seconds
+ *
+ * @param speed
+ *            in ()
+ * @param time
+ *            in seconds
+ */
+public class RunFlyWheel extends Command {
+
+       @Override
+       protected boolean isFinished() {
+               // TODO Auto-generated method stub
+               return false;
+       }
+
+}