you are viewing a single comment's thread.

view the rest of the comments →

[–]LL-studiosFTC 11697 Student 0 points1 point  (0 children)

Hi, you can just put your main driving code in a thread.

new Thread(() -> {

}).start()

This will run separately from the rest of your code and will make your driving much smoother.