implement code for PassRoughTerrain command group
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / commands / auton / LiftPortcullis.java
CommitLineData
6bb7f8ac 1package org.usfirst.frc.team3501.robot.commands.auton;
e71d6d9b
ME
2
3import edu.wpi.first.wpilibj.command.Command;
4
87139697
ME
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
e71d6d9b
ME
20public class LiftPortcullis extends Command {
21
87139697
ME
22 public LiftPortcullis() {
23 }
e71d6d9b 24
87139697 25 @Override
aa360490
ME
26 protected void end() {
27 // TODO Auto-generated method stub
28
87139697 29 }
e71d6d9b 30
87139697
ME
31 @Override
32 protected void execute() {
aa360490
ME
33 // TODO Auto-generated method stub
34
87139697 35 }
e71d6d9b 36
87139697 37 @Override
aa360490
ME
38 protected void initialize() {
39 // TODO Auto-generated method stub
40
87139697 41 }
e71d6d9b 42
87139697 43 @Override
aa360490
ME
44 protected void interrupted() {
45 // TODO Auto-generated method stub
46
87139697 47 }
e71d6d9b 48
87139697 49 @Override
aa360490
ME
50 protected boolean isFinished() {
51 // TODO Auto-generated method stub
52 return false;
87139697 53 }
aa360490 54
e71d6d9b 55}