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