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. |
|
class ExampleIterativeOpModeKotlin : OpMode
A bare-bones iterative op mode. Runs by repeatedly calling loop over and over again. Good for Tele-Op op modes. |
|
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. |
|
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. |