Add rudimentary auton strategies based on timing
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / commands / auton / PassLowBar.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 PassLowBar extends CommandGroup {
12
13 public PassLowBar() {
14 addSequential(new TimeDrive(Auton.LOW_BAR_SPEED, Auton.LOW_BAR_TIME));
15 }
16}