Is it possible to increase the font size that is printed on the brain screen?
I think that’s font type, not font size. If not, can you provide some sample code to show me how to use it.
So the font size is defined by fontType
example code:
Brain.Screen.setFont(vex::fontType::mono30);
Brain.Screen.print(“This is font size 30”);
Brain.Screen.setFont(vex::fontType::mono20);
Brain.Screen.print(“This is font size 20”);
Brain.Screen.setFont(vex::fontType::mono60);
Brain.Screen.print(“This is font size 60”);
where “mono30” means monospace font with a nominal 30 pixel line height.
2 Likes
Awesome, thank you so much