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