add command to move intake arm out in Compact Robot commandgroup
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / commands / auton / CompactRobot.java
CommitLineData
246a613b
CZ
1package org.usfirst.frc.team3501.robot.commands.auton;
2
56d14d98
CZ
3import org.usfirst.frc.team3501.robot.commands.intakearm.MoveIntakeArmToAngle;
4import org.usfirst.frc.team3501.robot.subsystems.IntakeArm;
5
6import edu.wpi.first.wpilibj.command.CommandGroup;
246a613b
CZ
7
8/**
9 *
10 */
56d14d98 11public class CompactRobot extends CommandGroup {
246a613b
CZ
12
13 public CompactRobot() {
56d14d98
CZ
14 addParallel(new MoveIntakeArmToAngle(IntakeArm.potAngles[3],
15 IntakeArm.moveIntakeArmSpeed));
246a613b 16
246a613b
CZ
17 }
18}