426063dcaa2cad2fa4df19f4d05933640e74d1c1
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / commands / auton / PassRampart.java
1 package org.usfirst.frc.team3501.robot.commands.auton;
2
3 import org.usfirst.frc.team3501.robot.commands.driving.DriveForTime;
4
5 import edu.wpi.first.wpilibj.command.CommandGroup;
6
7 /***
8 * This command will drive the robot through the rampart.
9 *
10 * dependency on subsystems: drivetrain
11 *
12 * dependency on other commands: DriveForTime
13 *
14 * pre-condition: robot is flush against the ramp of the outerworks in front of
15 * the rampart
16 *
17 * post-condition: the robot has passed the rampart and is in the next zone
18 *
19 * @author Meryem and Avi
20 *
21 */
22
23 public class PassRampart extends CommandGroup {
24
25 public PassRampart() {
26
27 final double BEG_TIME = 0;
28 final double BEG_SPEED = 0;
29 final double MID_TIME = 0;
30 final double MID_SPEED = 0;
31 final double END_TIME = 0;
32 final double END_SPEED = 0;
33
34 addSequential(new DriveForTime(BEG_TIME, BEG_SPEED));
35 addSequential(new DriveForTime(MID_TIME, MID_SPEED));
36 addSequential(new DriveForTime(END_TIME, END_SPEED));
37
38 }
39
40 }