P. S. A tip would be appreciated on how to rotate a numeral and place it elsewhere.
I'm not sure I understand? This code does what you see in the attached.
g.clear(1);
// set the font you want
g.setFont("Vector", 30);
// Rotate it 180 degrees, center it
g.setFontAlign(0,0,2);
// draw, middle of screen
g.drawString("123", 120,120);
// and return to right way up
g.setFontAlign(0,0,0);
g.drawString("123", 120,100);
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
I'm not sure I understand? This code does what you see in the attached.
1 Attachment