Skip to content

Instantly share code, notes, and snippets.

@gfwilliams
Created May 21, 2020 08:14
Show Gist options
  • Save gfwilliams/27711cd5003478d18f3c0dbea9e6cb61 to your computer and use it in GitHub Desktop.
Save gfwilliams/27711cd5003478d18f3c0dbea9e6cb61 to your computer and use it in GitHub Desktop.
SImple map of some fonts for Espruino
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