Auton changes, and more camera testing (aka plz work)
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / commands / auton / Auton.java
CommitLineData
f81d4ab0
HD
1package org.usfirst.frc.team3501.robot.commands.auton;
2
3import org.usfirst.frc.team3501.robot.commands.driving.TimeDrive;
4
5import edu.wpi.first.wpilibj.command.CommandGroup;
6
7/**
8 *
9 */
10public class Auton extends CommandGroup {
11
12 public Auton() {
13 addSequential(new TimeDrive(.5, -.4));
14 addSequential(new TimeDrive(.5, -.6));
15 addSequential(new TimeDrive(.5, -.8));
8260ae5a 16 addSequential(new TimeDrive(1, -1));
f81d4ab0
HD
17 }
18}