Scheduler
Scheduler and command plexus for use with the BunyipsLib task system in TeleOp.
Author
Lucas Bubner, 2024
Since
1.0.0-pre
See also
Types
Functions
Add subsystems to the scheduler. This will ensure the update()
method of the subsystems is called, and that commands can be scheduled on these subsystems. This is REQUIRED to be called if using a base implementation of Scheduler. If you are using a CommandBasedBunyipsOpMode, see the use method or rely on the automatic features during construction that will add subsystems at construction with no need to call this method.
Create a new controller trigger creator for the driver (gamepad 1).
Get all allocated tasks.
Create a new controller trigger creator for gamepad 1 (driver).
Create a new controller trigger creator for gamepad 2 (operator).
Run a task immediately with no start condition. This is the same as calling .when(() -> true)
.
Create a new controller trigger creator.
Run a task when a condition is met. This condition will be evaluated continuously.
Create a new controller trigger creator for the operator (gamepad 2).
Run the scheduler. This will run all subsystems and tasks allocated to the scheduler. This should be called in the activeLoop()
method of the BunyipsOpMode, and is automatically called in CommandBasedBunyipsOpMode.
Unbind a scheduled task from the scheduler.
Unbind a task from the scheduler, based on the index of the task in the scheduler's allocated tasks.
Create a new controller trigger creator.
Run a task when a condition is met. This condition will be evaluated continuously.
Run a task when a condition is met. This condition will be evaluated according to a falling-edge detection.
Run a task when a condition is met. This condition will be evaluated according to a rising-edge detection.