g.setFontVector -> g.setFont("Vector",19) or even g.setFont("Vector19")
it is possible to combine g functions like this g.setFont("Vector19").drawString("GEAR",257,125);
speed of linedraw - rotation has side effects on drawing speed, check module ILI9341 and datasheet to add rotation to the driver. This should also speed up drawString with Vector font.
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.
Cool, very nice!
Some hints:
g.setFontVector -> g.setFont("Vector",19) or even g.setFont("Vector19")
it is possible to combine g functions like this
g.setFont("Vector19").drawString("GEAR",257,125);
speed of linedraw - rotation has side effects on drawing speed, check module ILI9341 and datasheet to add rotation to the driver. This should also speed up drawString with Vector font.
This is working for me: