Recently we been thinking about printing values to the controller, and it seems that every time we tell the program to clear the controller at the start (opcontrol) it doesn’t do so consistently. Are we supposed to add delays after the command?
Ex.
void opcontrol() {
master.clear();
pros::delay(x);
master.print(0, 0, "asdf");
pros::delay(10);
}
If so, what is the lowest value for x for it to work consistently?