CommandOpMode

abstract class CommandOpMode : LinearOpMode, CommandInterface

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

Constructors

Link copied to clipboard
constructor()

Types

Link copied to clipboard
annotation class Hardware(val id: String)
Link copied to clipboard
open inner class HardwareDelegate<T, Device : Any>(val deviceType: KClass<Device>, val deviceName: String, map: Device.() -> T) : CommandOpMode.InitializerDelegate<T>
Link copied to clipboard
open inner class InitializerDelegate<T>(onInit: () -> T)
Link copied to clipboard
annotation class Register
Link copied to clipboard
inner class RobotDelegate<T : Robot>(type: KClass<T>)

Properties

Link copied to clipboard
protected var cancelBeforeStart: Boolean

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

Link copied to clipboard
protected var dashboard: FtcDashboard?

The FtcDashboard instance.

Link copied to clipboard
@get:JvmName(name = "gamepad")
protected val gamepad: MultipleGamepad
Link copied to clipboard
protected var hMap: HardwareMap
Link copied to clipboard
protected var initLoop: Boolean

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

Whether this OpMode is an autonomous OpMode.

Link copied to clipboard
protected val isTeleOp: Boolean

Whether this OpMode is a teleop OpMode.

Link copied to clipboard

The global SuperTelemetry instance.

Functions

Link copied to clipboard
fun <T> gamepad(buttons: BiFunction<GamepadEx, GamepadEx, T>): T
Link copied to clipboard
protected inline fun <Device : Any> getHardware(deviceName: String): CommandOpMode.HardwareDelegate<Device, Device>
Link copied to clipboard
protected fun <T : Any> onInit(init: () -> T): CommandOpMode.InitializerDelegate<T>
Link copied to clipboard
open fun postStop()
Link copied to clipboard
abstract fun preInit()
Link copied to clipboard
open fun preStart()
Link copied to clipboard
protected inline fun <T : Robot> robot(): CommandOpMode.RobotDelegate<T>
Link copied to clipboard
override fun runOpMode()