TinyCircuits-Thumby-Code-Editor
TinyCircuits-Thumby-Code-Editor copied to clipboard
Tilde appears as a right arrow in 5x7 font
When running the following code, the output shows the tilde in the first drawText function as a right arrow, in the top left corner of the screen.
from thumbyGraphics import display display.setFont('/lib/font5x7.bin', 5, 7, 1) display.drawText('~!@#$%^&*()_+', 0, 0, 1) display.drawText('QWERTYUIOP{}', 0, 8, 1) display.drawText('ASDFGHJKL:"\', 0, 16, 1) display.drawText('XZXCVB NM<>?', 0, 24, 1) display.update()