Recode everything for new robot
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / commands / auton / PassPortcullis.java
CommitLineData
8a3090b5
CZ
1package org.usfirst.frc.team3501.robot.commands.auton;
2
e348a7d2
CZ
3import org.usfirst.frc.team3501.robot.commands.driving.DriveDistance;
4
8a3090b5
CZ
5import edu.wpi.first.wpilibj.command.CommandGroup;
6
7/**
8 *
9 */
10public class PassPortcullis extends CommandGroup {
11
12 public PassPortcullis() {
e348a7d2
CZ
13 // TODO: in theory, these two commands should not be running in parallel all
14 // the time, because of specifics of the series of actions needed to
15 // successfully pass the portcullis, so edit these to reflect that
16 addParallel(new LiftPortcullis());
17 addParallel(new DriveDistance(0, 0)); // TODO: figure out distance to travel
8a3090b5
CZ
18 }
19}