Ok so this is what I have set up, will the Timer.delay(3) delay the next command from running for three seconds, or do I have to use something else?
Quote:
public class AutonomousCommand extends CommandGroup {
public AutonomousCommand() {
addParallel(new AutonomousShoot());
Timer.delay(3);
addSequential(new AutonomousDeliver());
addSequential(new AutonomousConveyor());
addSequential(new AutonomousDeliver());
addSequential(new AllStop());
|