rearrange a few more files. realize that adding the auton read from file thing was...
[3501/3501-spark-go] / src / org / usfirst / frc / team3501 / robot / autons / ContainerOverStep.java
CommitLineData
e81578e3
LH
1package org.usfirst.frc.team3501.robot.autons;
2
f139e313 3import org.usfirst.frc.team3501.bases.CommandGroup;
e81578e3
LH
4
5public class ContainerOverStep extends CommandGroup {
6
7 public ContainerOverStep() {
8 super("ContainerOverStep");
9
f139e313
LH
10 requires(drivetrain);
11 requires(arm);
12 requires(claw);
e81578e3
LH
13
14 queueCommands();
15 }
16
17 private void queueCommands() {
18 addSequential(new PickUpContainer());
19 addSequential(new DriveOverStep(-1));
20 }
21}