I’m trying to display values to my V5 controller’s LCD screen, but it seems to take a long time to clear, set cursor, and print to the screen and every time the screen updates, it keeps flashing. Does anyone have any ideas on how to fix this?
I am using c++ pro
int main(){
while(true){
ctr.Screen.clearScreen();//ctr is the name of the controller
ctr.Screen.setCursor(1,0);
ctr.Screen.print("Hello, World!");
vex::task::sleep(20);
}
return 0;
}