Add MoveIntakeArmUp
authorShivani Oghanta <shivani.oghanta@gmail.com>
Thu, 11 Feb 2016 05:03:16 +0000 (21:03 -0800)
committerCindy Zhang <cindyzyx9@gmail.com>
Sat, 13 Feb 2016 19:52:19 +0000 (11:52 -0800)
src/org/usfirst/frc/team3501/robot/commands/MoveIntakeArmUp.java [new file with mode: 0644]

diff --git a/src/org/usfirst/frc/team3501/robot/commands/MoveIntakeArmUp.java b/src/org/usfirst/frc/team3501/robot/commands/MoveIntakeArmUp.java
new file mode 100644 (file)
index 0000000..fa8671f
--- /dev/null
@@ -0,0 +1,30 @@
+package org.usfirst.frc.team3501.robot.commands;
+
+import edu.wpi.first.wpilibj.command.Command;
+
+public class MoveIntakeArmUp extends Command {
+       public MoveIntakeArmUp() {
+       }
+
+       @Override
+       protected void initialize() {
+       }
+
+       @Override
+       protected void execute() {
+       }
+
+       @Override
+       protected boolean isFinished() {
+               return false;
+       }
+
+       @Override
+       protected void end() {
+       }
+
+       @Override
+       protected void interrupted() {
+       }
+
+}