Switch left and right side of robot, remove capability to switch front temporarily
[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
949415d0 3import org.usfirst.frc.team3501.robot.Constants.IntakeArm;
f53566b3 4import org.usfirst.frc.team3501.robot.commands.driving.TimeDrive;
949415d0 5import org.usfirst.frc.team3501.robot.commands.intakearm.MoveIntakeArm;
f53566b3
HD
6
7import edu.wpi.first.wpilibj.command.CommandGroup;
8
9/**
10 *
11 */
12public class PassLowBar extends CommandGroup {
13
14 public PassLowBar() {
949415d0
HD
15 addSequential(new TimeDrive(.3, 1));
16 addSequential(new MoveIntakeArm(IntakeArm.EXTEND));
17 addSequential(new TimeDrive(.5, 3));
f53566b3
HD
18 }
19}