Add rudimentary auton strategies based on timing
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / commands / auton / PassRoughTerrain.java
CommitLineData
f53566b3
HD
1package org.usfirst.frc.team3501.robot.commands.auton;
2
3import org.usfirst.frc.team3501.robot.Constants.Auton;
4import org.usfirst.frc.team3501.robot.commands.driving.TimeDrive;
5
6import edu.wpi.first.wpilibj.command.CommandGroup;
7
8/**
9 *
10 */
11public class PassRoughTerrain extends CommandGroup {
12
13 public PassRoughTerrain() {
14 addSequential(new TimeDrive(Auton.ROUGH_TERRAIN_SPEED,
15 Auton.ROUGH_TERRAIN_TIME));
16 }
17}