CommandOpMode

public abstract class CommandOpMode extends LinearOpMode implements CommandInterface

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

Constructors

Link copied to clipboard

Types

Link copied to clipboard
public @interface Hardware
Link copied to clipboard
public class HardwareDelegate<T extends Object, Device extends Object> extends CommandOpMode.InitializerDelegate<T>
Link copied to clipboard
public class InitializerDelegate<T extends Object>
Link copied to clipboard
public @interface Register
Link copied to clipboard
public final class RobotDelegate<T extends Robot>

Properties

Link copied to clipboard

Whether all commands scheduled in preInit should be cancelled before starting the OpMode. false by default.

Link copied to clipboard
protected FtcDashboard dashboard

The FtcDashboard instance.

Link copied to clipboard
private final MultipleGamepad gamepad
Link copied to clipboard
protected HardwareMap hMap
Link copied to clipboard
private Boolean initLoop

Whether the CommandScheduler should update in the init loop. Note that if preStart is overridden, this is automatically set to true, otherwise false.

Link copied to clipboard
protected final Boolean isAutonomous

Whether this OpMode is an autonomous OpMode.

Link copied to clipboard
protected final Boolean isTeleOp

Whether this OpMode is a teleop OpMode.

Link copied to clipboard
protected final SuperTelemetry telem

The global SuperTelemetry instance.

Functions

Link copied to clipboard
protected final MultipleGamepad gamepad()
public final T gamepad<T extends Any>(BiFunction<GamepadEx, GamepadEx, T> buttons)
Link copied to clipboard
protected final Boolean getCancelBeforeStart()

Whether all commands scheduled in preInit should be cancelled before starting the OpMode. false by default.

Link copied to clipboard
protected final CommandOpMode.HardwareDelegate<Device, Device> getHardware<Device extends Any>(String deviceName)
Link copied to clipboard
protected final Boolean getInitLoop()

Whether the CommandScheduler should update in the init loop. Note that if preStart is overridden, this is automatically set to true, otherwise false.

Link copied to clipboard
protected final CommandOpMode.InitializerDelegate<T> onInit<T extends Any>(Function0<T> init)
Link copied to clipboard
public Unit postStop()
Link copied to clipboard
public abstract Unit preInit()
Link copied to clipboard
public Unit preStart()
Link copied to clipboard
protected final CommandOpMode.RobotDelegate<T> robot<T extends Robot>()
Link copied to clipboard
public final Unit runOpMode()
Link copied to clipboard
protected final Unit setCancelBeforeStart(Boolean cancelBeforeStart)

Whether all commands scheduled in preInit should be cancelled before starting the OpMode. false by default.

Link copied to clipboard
protected final Unit setInitLoop(Boolean initLoop)

Whether the CommandScheduler should update in the init loop. Note that if preStart is overridden, this is automatically set to true, otherwise false.