make MoveUpLevel command
authorKevin Zhang <kevin.zhang.13499@gmail.com>
Tue, 17 Nov 2015 04:03:46 +0000 (20:03 -0800)
committerKevin Zhang <kevin.zhang.13499@gmail.com>
Tue, 17 Nov 2015 04:03:46 +0000 (20:03 -0800)
src/org/usfirst/frc3501/RiceCatRobot/commands/MoveUpLevel.java [new file with mode: 0644]

diff --git a/src/org/usfirst/frc3501/RiceCatRobot/commands/MoveUpLevel.java b/src/org/usfirst/frc3501/RiceCatRobot/commands/MoveUpLevel.java
new file mode 100644 (file)
index 0000000..55096fb
--- /dev/null
@@ -0,0 +1,43 @@
+package org.usfirst.frc3501.RiceCatRobot.commands;
+
+import edu.wpi.first.wpilibj.command.Command;
+
+public class MoveUpLevel extends Command{
+
+       int targetLevel, currentLevel;
+       
+       public MoveUpLevel(int targetLevel) {
+               this.targetLevel = targetLevel;
+       }
+       
+       @Override
+       protected void end() {
+               // TODO Auto-generated method stub
+               
+       }
+
+       @Override
+       protected void execute() {
+               // TODO Auto-generated method stub
+               
+       }
+
+       @Override
+       protected void initialize() {
+               // TODO Auto-generated method stub
+               
+       }
+
+       @Override
+       protected void interrupted() {
+               // TODO Auto-generated method stub
+               
+       }
+
+       @Override
+       protected boolean isFinished() {
+               // TODO Auto-generated method stub
+               return false;
+       }
+
+}