delete commands that moved intake arm to a specific angle
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / commands / auton / CompactRobot.java
index bde8aba299ef18f44feb06183157991eaab1b7d1..8596cd3b894fe4924e037c6d47d090a7f6227cc9 100644 (file)
@@ -1,44 +1,14 @@
 package org.usfirst.frc.team3501.robot.commands.auton;
 
-import edu.wpi.first.wpilibj.command.Command;
+import edu.wpi.first.wpilibj.command.CommandGroup;
 
 /**
  *
  */
-public class CompactRobot extends Command {
+public class CompactRobot extends CommandGroup {
 
+  // TODO: implement CompactRobot with updated Robot capabilities
   public CompactRobot() {
-    // Use requires() here to declare subsystem dependencies
-    // eg. requires(chassis);
-  }
-
-  // Called just before this Command runs the first time
-  @Override
-  protected void initialize() {
-    // move hood down
-    // move intakeArm out
-    // move defenseArm down
-  }
-
-  // Called repeatedly when this Command is scheduled to run
-  @Override
-  protected void execute() {
-  }
-
-  // Make this return true when this Command no longer needs to run execute()
-  @Override
-  protected boolean isFinished() {
-    return false;
-  }
-
-  // Called once after isFinished returns true
-  @Override
-  protected void end() {
-  }
 
-  // Called when another command which requires one or more of the same
-  // subsystems is scheduled to run
-  @Override
-  protected void interrupted() {
   }
 }