delete auto generated comments in auton package
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / commands / auton / LiftPortcullis.java
1 package org.usfirst.frc.team3501.robot.commands.auton;
2
3 import edu.wpi.first.wpilibj.command.Command;
4
5 /***
6 * This command will move the robot forward while lifting the defense arm up.
7 *
8 * pre-condition: robot is flush against the ramp of the outerworks in front of
9 * the portcullis
10 *
11 * This command has to drive forward at the same time because that's how the
12 * robot opens the portcullis
13 *
14 * post-condition: the robot has passed the portcullis and is in the next zone
15 *
16 * @author Meryem and Avi
17 *
18 */
19
20 public class LiftPortcullis extends Command {
21
22 public LiftPortcullis() {
23 }
24
25 @Override
26 protected void end() {
27
28 }
29
30 @Override
31 protected void execute() {
32
33 }
34
35 @Override
36 protected void initialize() {
37
38 }
39
40 @Override
41 protected void interrupted() {
42
43 }
44
45 @Override
46 protected boolean isFinished() {
47 return false;
48 }
49
50 }