change switch statements in Robot.java to if else chain
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / commands / auton / PassMoat.java
CommitLineData
6bb7f8ac 1package org.usfirst.frc.team3501.robot.commands.auton;
d607dcbb 2
fe726c3c 3import edu.wpi.first.wpilibj.command.CommandGroup;
d607dcbb
ME
4
5/***
6 * This command will drive the robot through the moat.
7 *
8 * pre-condition: robot is flush against the ramp of the outerworks in front of
9 * the moat
10 *
11 * post-condition: the robot has passed the moat and is in the next zone
12 *
13 * @author Meryem and Avi
14 *
15 */
d607dcbb 16
fe726c3c 17public class PassMoat extends CommandGroup {
d607dcbb 18
fe726c3c
ME
19 private final double BEG_TIME = 0;
20 private final double MID_TIME = 0;
21 private final double END_TIME = 0;
22 private final double BEG_SPEED = 0;
23 private final double MID_SPEED = 0;
24 private final double END_SPEED = 0;
d607dcbb 25
fe726c3c
ME
26 public PassMoat() {
27 addSequential(new DriveForTime(BEG_TIME, BEG_SPEED));
28 addSequential(new DriveForTime(MID_TIME, MID_SPEED));
29 addSequential(new DriveForTime(END_TIME, END_SPEED));
d607dcbb 30
d607dcbb
ME
31 }
32}