Uses arrays and sends message when a specific limitswitch is hit
[3501/2015-FRC-Spark] / src / org / usfirst / frc3501 / RiceCatRobot / commands / LimitSwitchTest.java
1 package org.usfirst.frc3501.RiceCatRobot.commands;
2
3 import edu.wpi.first.wpilibj.command.CommandGroup;
4
5 public class LimitSwitchTest extends CommandGroup {
6 /**
7 * It is necessary for all commands to be used. From MoveArmToLevel1 - MoveArmToLevel3
8 */
9
10 public LimitSwitchTest() {
11 addSequential( new MoveArmToLevel1() );
12 addSequential( new MoveArmToLevel2() );
13 addSequential( new MoveArmToLevel3() );
14 }
15 }