Class SequentialCommandGroup

java.lang.Object
edu.wpi.first.wpilibj2.command.Command
edu.wpi.first.wpilibj2.command.SequentialCommandGroup
All Implemented Interfaces:
Sendable

public class SequentialCommandGroup
extends Command
A command composition that runs a list of commands in sequence.

The rules for command compositions apply: command instances that are passed to it cannot be added to any other composition or scheduled individually, and the composition requires all subsystems its components require.

This class is provided by the NewCommands VendorDep