Created
May 21, 2020 08:14
-
-
Save gfwilliams/27711cd5003478d18f3c0dbea9e6cb61 to your computer and use it in GitHub Desktop.
SImple map of some fonts for Espruino
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
g.clear();g.setFont("Vector",24); | |
for (var y=0;y<16;y++) { | |
for (var x=0;x<16;x++) { | |
g.drawString(String.fromCharCode(x+y*16),x*32,y*32); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment