Does anyone know how to display integers on the vex v5 pros brain?
If your using llemu and Pros::lcd::print it works basically the same as printf()
1 Like
pros::lcd::initialize();
pros::lcd::print(1, ā%dā, your_int);
2 Likes