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.
Inheritors
Properties
Whether this command can be interrupted by another command.
The set of components that this command uses.
The global SuperTelemetry instance.
Functions
Adds a command to run in parallel with this one (Both run simultaneously until they finish).
Adds a runnable to run in parallel with this one (Both run simultaneously until they finish).
Runs repeatedly until isFinished returns true.
Overrides this command's execute function.
Returns whether this command is finished.
Returns whether this command is currently registered with the CommandScheduler.
Returns a ListenerCommand that runs the specified action when this command is ended.
Returns a ListenerCommand that runs the specified action whenever this command updates.
Returns a ListenerCommand that runs the specified action when this command initializes.
Adds a command to run in parallel with this one (Both run simultaneously until one finishes).
Adds a runnable to run in parallel with this one (Both run simultaneously until one finishes).
Repeats this command times times.
Repeats this command indefinitely.
Adds requirements to this command's list of required components.
Runs this command independently of the CommandScheduler. Initializes, executes and ends this command synchronously while also updating all of its required components and updating CommandScheduler.telem.
Overrides this command's isFinished function to run until it is cancelled.
Overrides this command's isFinished function to run only once.
Overrides this command's isFinished function to finish when condition returns true.
Sets whether this command is interruptable.
Overrides this command's isFinished function to finish when condition returns true, or, if it doesn't, when this command would normally finish.
Adds a command to run after this one.
Adds a runnable to run after this one.
Stops the currently active OpMode after this command ends.
Waits duration seconds after this command finishes.
Waits until condition returns true after this command finishes.
Interrupts this command if it does not finish after duration seconds.