X-Git-Url: http://challenge-bot.com/repos/?a=blobdiff_plain;f=src%2Forg%2Fusfirst%2Ffrc%2Fteam3501%2Frobot%2Fcommands%2Fauton%2FPassPortcullis.java;fp=src%2Forg%2Fusfirst%2Ffrc%2Fteam3501%2Frobot%2Fcommands%2Fauton%2FPassPortcullis.java;h=5e6e393ec52be3674d1405ebedd635cec861eae7;hb=f53566b348b3492a834d8fa6ecbb76c011e2a9ff;hp=0000000000000000000000000000000000000000;hpb=7988f380b7cf243129ad2678b2d3f5c300ad29c4;p=3501%2Fstronghold-2016 diff --git a/src/org/usfirst/frc/team3501/robot/commands/auton/PassPortcullis.java b/src/org/usfirst/frc/team3501/robot/commands/auton/PassPortcullis.java new file mode 100644 index 00000000..5e6e393e --- /dev/null +++ b/src/org/usfirst/frc/team3501/robot/commands/auton/PassPortcullis.java @@ -0,0 +1,28 @@ +package org.usfirst.frc.team3501.robot.commands.auton; + +import edu.wpi.first.wpilibj.command.CommandGroup; + +/** + * + */ +public class PassPortcullis extends CommandGroup { + + public PassPortcullis() { + // Add Commands here: + // e.g. addSequential(new Command1()); + // addSequential(new Command2()); + // these will run in order. + + // To run multiple commands at the same time, + // use addParallel() + // e.g. addParallel(new Command1()); + // addSequential(new Command2()); + // Command1 and Command2 will run in parallel. + + // A command group will require all of the subsystems that each member + // would require. + // e.g. if Command1 requires chassis, and Command2 requires arm, + // a CommandGroup containing them would require both the chassis and the + // arm. + } +}