Change shooter to function off of two pistons, remove punch, shooter motors, and...
[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() {
2f79a795 14 addSequential(new MoveIntakeArmToAngle(IntakeArm.potAngles[3],
56d14d98 15 IntakeArm.moveIntakeArmSpeed));
246a613b
CZ
16 }
17}