Telemark Unit 2 Simulator
OpMode Structure · Full gamepad · Smart editing · Live telemetry
Single-file build
@TeleOp(name="TeleOpTest", group="Practice") public class TeleOpTest extends OpMode { @Override public void init() { telemetry.addData("Status", "Initialized"); } @Override public void loop() { telemetry.addData("Status", "Running"); } @Override public void stop() { telemetry.addData("Status", "Stopped"); } }
Select OpMode...
STOPPED
Time:
0.00
s
INIT
STOP
Gamepad 1
Telemetry will appear here...
Your class won't appear on the Driver Station without @TeleOp or @Autonomous.
Use telemetry.addData() to send data to the Driver Station.
Calling hardwareMap.get() inside loop() causes performance issues.