Package-level declarations

The Command System

Types

Link copied to clipboard
public abstract class AbstractComponent implements Component

An abstract version of Component with more quality of life features.

Link copied to clipboard
public final class BasicCommand extends Command

A command that executes the provided runnable once. Easily decorated.

Link copied to clipboard
public abstract class Command

A state machine representing a complete action to be performed using any number of Components. Commands are usually run from the CommandScheduler, but can be run independently if desired. Commands can be chained together to form complex multi-step actions.

Link copied to clipboard
public abstract class CommandGroup extends Command

A type of command that uses multiple commands, joining all their requirements.

Link copied to clipboard
public interface CommandInterface

An interface that simplifies access to the CommandScheduler by implementing all its methods.

Link copied to clipboard
public abstract class CommandOpMode extends LinearOpMode implements CommandInterface

An OpMode that uses a CommandScheduler, and optionally, a Robot.

Link copied to clipboard
public class CommandScheduler implements OpModeManagerNotifier.Notifications

The main orchestrator for Commands and Components.

Link copied to clipboard
public interface Component

A class representing a basic unit of robot organization, encapsulating low-level robot hardware and providing methods to be used by Commands. The CommandScheduler uses components to ensure that multiple commands are not using the same hardware at the same time. Commands that use a component should include that component in their Command.requirements set.

Link copied to clipboard
public final class FunctionalCommand extends Command

A command whose properties can be defined externally. Useful for making simple inline commands or combining commands together.

Link copied to clipboard
public final class InstantCommand extends Command

A command that runs as soon as it is scheduled.

Link copied to clipboard
public final class ListenerCommand extends Command

A command useful for adding listeners to other commands.

Link copied to clipboard
public final class ParallelCommand extends CommandGroup

A command that runs commands in parallel until they all finish.

Link copied to clipboard
public final class RaceCommand extends CommandGroup

A command that runs commands in parallel until one of them finishes.

Link copied to clipboard
public final class RepeatCommand extends Command

A command that runs another command multiple times.

Link copied to clipboard
public abstract class Robot implements CommandInterface

A class that makes any command-based robot code a lot smoother and easier to understand.

Link copied to clipboard
public final class SelectCommand extends Command

A command that runs the specified command every time it is scheduled.

Link copied to clipboard
public final class SequentialCommand extends CommandGroup

A command that runs commands in sequence.

Link copied to clipboard
public final class TimeCommand extends Command

A time-based command.

Link copied to clipboard
public final class WaitCommand extends Command

A command that waits the specified duration before finishing.