Robot

public abstract class Robot implements CommandInterface

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

Constructors

Link copied to clipboard
public Robot Robot()

Properties

Link copied to clipboard
public final FtcDashboard dashboard
Link copied to clipboard
private final MultipleGamepad gamepad
Link copied to clipboard
public final HardwareMap hMap

The current hardware map.

Link copied to clipboard

Whether the current OpMode is an autonomous OpMode.

Link copied to clipboard
public final Boolean isInTeleOp

Whether the current OpMode is a teleop OpMode.

Link copied to clipboard
public final OpMode opMode

The current OpMode.

Functions

Link copied to clipboard
public final MultipleGamepad gamepad()
Link copied to clipboard
public Unit init()

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

Link copied to clipboard
public Unit 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
public Unit stop()

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