Other useful functionsLast modified: 20 February 2025.every functionThis allows you to run a function every so many loops.loopTimeController.every(3, () -> { telemetry.addData("Every 3", "Seconds"); });This runs the function every 3 loops using the ()->{} to define the function being run.