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