Using this code, it looks like y is starting from bottom not from top as it was before.
String looks like being mirrored.
Tested with last nightly build (1v62)
var g,p,n,d;
function firstDraw(){
g.setBgColor(0.8,0.8,0.8);
g.clear();
g.setFontVector(24);
g.drawString("Espruino",10,10);
g.fillRect(40,40,100,100);
}
SPI2.setup({sck:B13, miso:B14, mosi:B15, baud: 1000000});
g = require("ILI9341").connect(SPI2,C6,C7,C8,firstDraw);
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.
Using this code, it looks like y is starting from bottom not from top as it was before.
String looks like being mirrored.
Tested with last nightly build (1v62)