CommandScheduler
Properties
The current gamepads being used, or null if no OpMode is active.
Whether the current OpMode is an autonomous OpMode.
Whether the current OpMode is a teleop OpMode.
Command scheduling policy. If true, all commands which cannot currently be scheduled will be scheduled as soon as they can be schedule. If false (default behavior), all commands which cannot currently be scheduled will not be scheduled.
The global telemetry object used for both FTC Dashboard and the Driver Station.
The global telemetry object used for both FTC Dashboard and the Driver Station.
Functions
This method attaches itself to the robot controller event loop to automatically add/remove telemetries from the global telemetry, register any gamepads or hardware maps, and provide other useful features.
Returns whether a command can currently be scheduled.
Returns whether the given components are registered with this CommandScheduler.
Returns whether all the given commands are scheduled.
Maps a condition to a runnable. If the condition returns true, a command is scheduled. A command can be mapped to multiple conditions.
Maps a condition to commands. If the condition returns true, the commands are scheduled. A command can be mapped to multiple conditions.
Resets this CommandScheduler. The telemetry is reset, all commands are cancelled, and all commands, components, and conditions are cleared.
Resets telem.
Stops the currently active OpMode.
Unregisters the given components from this CommandScheduler so that their update functions are no longer called and their default commands are no longer scheduled.