commands2 Package
|
A state machine representing a complete action to be performed by the robot. |
The scheduler responsible for running Commands. |
|
|
A command composition that runs one of two commands, depending on the value of the given condition when this command is initialized. |
|
Defers Command construction to runtime. |
|
A command that allows the user to pass in functions for each of the basic command methods through the constructor. |
|
This exception is raised when a command is used in a way that it shouldn't be. |
|
A Command that runs instantly; it will initialize, execute once, and end on the same iteration of the scheduler. |
|
An enum describing the command's behavior when another command with a shared requirement is scheduled. |
|
A command that starts a notifier to run the given Callable periodically in a separate thread. |
|
A command that controls an output with a |
|
A subsystem that uses a |
|
A command composition that runs a set of commands in parallel, ending when the last command ends. |
|
A command composition that runs a set of commands in parallel, ending only when a specific command (the "deadline") ends, interrupting all other commands that are still running at that point. |
|
A composition that runs a set of commands in parallel, ending when any one of the commands ends and interrupting all the others. |
|
A command that prints a string when initialized. |
|
A command that controls an output with a |
|
A subsystem that uses a |
Schedules a given command when this command is initialized and ends when it ends, but does not directly run it. |
|
|
A command that runs another command repeatedly, restarting it when it ends, until this command is interrupted. |
|
A command that runs a Callable continuously. |
|
Schedules the given commands when this command is initialized. |
|
A command composition that runs one of a selection of commands, either using a selector and a key to command mapping, or a supplier that returns the command directly at runtime. |
|
A command composition that runs a list of commands in sequence. |
|
A command that runs a given Callable when it is initialized, and another Callable when it ends. |
A robot subsystem. |
|
|
A command that uses two PID controllers ( |
|
Constructor for TimedRobot. |
|
A command that runs a |
|
A subsystem that generates and runs trapezoidal motion profiles automatically. |
|
A command that does nothing but takes a specified amount of time to finish. |
A command that does nothing but ends after a specified match time or condition. |
|
|
A class used internally to wrap commands while overriding a specific method; all other methods will call through to the wrapped command. |