a3cb6d4589e4b1a7824b5c25e5661545f2d56a58
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / commands / RetractDefenseArm.java
1 package org.usfirst.frc.team3501.robot.commands;
2
3 import org.usfirst.frc.team3501.robot.Robot;
4
5 import edu.wpi.first.wpilibj.command.CommandGroup;
6
7 public class RetractDefenseArm extends CommandGroup {
8
9 public RetractDefenseArm(double speed, double retractPosition) {
10 requires(Robot.defenseArm);
11
12 addParallel(new SetArmToAngle(speed, retractPosition));
13 addParallel(new SetHandToLevel(speed, retractPosition));
14 }
15 }