Robot

abstract class Robot : CommandInterface

A class that makes any command-based robot code a lot smoother and easier to understand.

Constructors

Link copied to clipboard
constructor()

Properties

Link copied to clipboard
val dashboard: FtcDashboard?
Link copied to clipboard
@get:JvmName(name = "gamepad")
val gamepad: MultipleGamepad
Link copied to clipboard
val hMap: HardwareMap

The current hardware map.

Link copied to clipboard

Whether the current OpMode is an autonomous OpMode.

Link copied to clipboard

Whether the current OpMode is a teleop OpMode.

Link copied to clipboard
val opMode: OpMode

The current OpMode.

Functions

Link copied to clipboard
open fun init()

This method is run when the current OpMode initializes. Automatically called by CommandOpMode if CommandOpMode.registerRobot is called.

Link copied to clipboard
open fun start()

This method is run as soon as the current OpMode starts. Automatically called by CommandOpMode if CommandOpMode.registerRobot is called.

Link copied to clipboard
open fun stop()

This method is run after the current OpMode ends. Automatically called by CommandOpMode if CommandOpMode.registerRobot is called.