add command MoveDefenseArm to specified target position based on input verticalDispla...
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / commands / MoveDefenseArmVertical.java
1 package org.usfirst.frc.team3501.robot.commands;
2
3 import edu.wpi.first.wpilibj.command.CommandGroup;
4
5 /**
6 *
7 */
8 public class MoveDefenseArmVertical extends CommandGroup {
9
10 public MoveDefenseArmVertical(double x, double y, double verticalDisplacement) {
11 addSequential(new MoveDefenseArm(x, y + verticalDisplacement));
12 }
13 }