TeamCode / org.firstinspires.ftc.teamcode.examples

Package org.firstinspires.ftc.teamcode.examples

Types

ExampleIterativeOpModeJava

open class ExampleIterativeOpModeJava : OpMode

A bare-bones iterative op mode in Java. Runs by repeatedly calling loop over and over again. Good for Tele-Op op modes.

ExampleIterativeOpModeKotlin

class ExampleIterativeOpModeKotlin : OpMode

A bare-bones iterative op mode. Runs by repeatedly calling loop over and over again. Good for Tele-Op op modes.

ExampleLinearOpModeJava

open class ExampleLinearOpModeJava : LinearOpMode

A bare-bones linear op mode in Java. Runs by calling a method once and is slightly simpler to implement than an iterative op mode. Good for Autonomous op modes.

ExampleLinearOpModeKotlin

class ExampleLinearOpModeKotlin : LinearOpMode

A bare-bones linear op mode. Runs by calling a method once and is slightly simpler to implement than an iterative op mode. Good for Autonomous op modes.