X-Git-Url: http://challenge-bot.com/repos/?p=3501%2Fstronghold-2016;a=blobdiff_plain;f=src%2Forg%2Fusfirst%2Ffrc%2Fteam3501%2Frobot%2Fcommands%2Fauton%2FCompactRobot.java;h=8596cd3b894fe4924e037c6d47d090a7f6227cc9;hp=7e3ba9dcc54fa88326beb4834c368d95652a37e4;hb=027452180cc75fa58cd6305d9eb351ec64b2345f;hpb=5cff891038f613483040c7f1a2b5b554adcd3313 diff --git a/src/org/usfirst/frc/team3501/robot/commands/auton/CompactRobot.java b/src/org/usfirst/frc/team3501/robot/commands/auton/CompactRobot.java index 7e3ba9dc..8596cd3b 100644 --- a/src/org/usfirst/frc/team3501/robot/commands/auton/CompactRobot.java +++ b/src/org/usfirst/frc/team3501/robot/commands/auton/CompactRobot.java @@ -1,8 +1,5 @@ package org.usfirst.frc.team3501.robot.commands.auton; -import org.usfirst.frc.team3501.robot.commands.intakearm.MoveIntakeArmToAngle; -import org.usfirst.frc.team3501.robot.subsystems.IntakeArm; - import edu.wpi.first.wpilibj.command.CommandGroup; /** @@ -10,8 +7,8 @@ import edu.wpi.first.wpilibj.command.CommandGroup; */ public class CompactRobot extends CommandGroup { + // TODO: implement CompactRobot with updated Robot capabilities public CompactRobot() { - addSequential(new MoveIntakeArmToAngle(IntakeArm.potAngles[3], - IntakeArm.moveIntakeArmSpeed)); + } }