Add start up fly wheel command
authorTanguyCossoul <tcossoul@gmail.com>
Fri, 3 Feb 2017 04:21:12 +0000 (20:21 -0800)
committerChristopher Zhu <christopherzhu@Christophers-MacBook-Pro.local>
Sat, 4 Feb 2017 21:27:02 +0000 (13:27 -0800)
src/org/usfirst/frc/team3501/robot/commands/shooter/StartUpFlyWheel.java [new file with mode: 0644]

diff --git a/src/org/usfirst/frc/team3501/robot/commands/shooter/StartUpFlyWheel.java b/src/org/usfirst/frc/team3501/robot/commands/shooter/StartUpFlyWheel.java
new file mode 100644 (file)
index 0000000..97f07e6
--- /dev/null
@@ -0,0 +1,36 @@
+package org.usfirst.frc.team3501.robot.commands.shooter;
+
+import edu.wpi.first.wpilibj.command.Command;
+
+/**
+ *
+ */
+public class StartUpFlyWheel extends Command {
+
+    public StartUpFlyWheel() {
+        // Use requires() here to declare subsystem dependencies
+        // eg. requires(chassis);
+    }
+
+    // Called just before this Command runs the first time
+    protected void initialize() {
+    }
+
+    // Called repeatedly when this Command is scheduled to run
+    protected void execute() {
+    }
+
+    // Make this return true when this Command no longer needs to run execute()
+    protected boolean isFinished() {
+        return false;
+    }
+
+    // Called once after isFinished returns true
+    protected void end() {
+    }
+
+    // Called when another command which requires one or more of the same
+    // subsystems is scheduled to run
+    protected void interrupted() {
+    }
+}