use constants in PassLowBar
[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
882a0965 3import org.usfirst.frc.team3501.robot.Constants.Auton;
949415d0 4import org.usfirst.frc.team3501.robot.Constants.IntakeArm;
f53566b3 5import org.usfirst.frc.team3501.robot.commands.driving.TimeDrive;
949415d0 6import org.usfirst.frc.team3501.robot.commands.intakearm.MoveIntakeArm;
f53566b3
HD
7
8import edu.wpi.first.wpilibj.command.CommandGroup;
9
10/**
11 *
12 */
13public class PassLowBar extends CommandGroup {
14
15 public PassLowBar() {
949415d0 16 addSequential(new MoveIntakeArm(IntakeArm.EXTEND));
882a0965 17 addSequential(new TimeDrive(Auton.LOW_BAR_TIME, Auton.LOW_BAR_SPEED));
f53566b3
HD
18 }
19}