#include "TFT_eSPI.h"
#include "install.h"
TFT_eSPI tft= TFT_eSPI();
TFT_eSprite sprite = TFT_eSprite(&tft);
void setup() {
tft.init();
tft.setRotation(3);
tft.setSwapBytes(true);
tft.fillScreen(TFT_WHITE);
tft.pushImage(106,0,214,170,install);
}
void loop() {
delay(60);
}