Add rudimentary auton strategies based on timing
[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.Constants.Auton;
4 import org.usfirst.frc.team3501.robot.commands.driving.TimeDrive;
5
6 import edu.wpi.first.wpilibj.command.CommandGroup;
7
8 /**
9 *
10 */
11 public class PassRampart extends CommandGroup {
12
13 public PassRampart() {
14 addSequential(new TimeDrive(Auton.RAMPART_SPEED, Auton.RAMPART_TIME));
15 }
16 }