add testing commands and buttons
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / commands / shooter / Test3.java
... / ...
CommitLineData
1package org.usfirst.frc.team3501.robot.commands.shooter;
2
3import edu.wpi.first.wpilibj.command.CommandGroup;
4
5/**
6 *
7 */
8public class Test3 extends CommandGroup {
9
10 public Test3() {
11 addSequential(new ChangeShooterSpeed(-1));
12 }
13}