#include <Adafruit_GFX.h>
#include <Adafruit_ILI9341.h>
Adafruit_ILI9341 tft = Adafruit_ILI9341(15, 2);
void setup() {
tft.begin();
tft.setRotation(1);
tft.print("hello world");
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}