#include <TFT_eSPI.h>
#include <SPI.h>       // this is needed for display
#include "image.h"

//This display 320 x 240 pixels; TTGO display 240 x 135
TFT_eSPI tft = TFT_eSPI(); // Invoke custom library with default width and height

void setup(void) {
  Serial.begin(115200);
  Serial.println("INICIO:");
  
  tft.begin();
  tft.setRotation(1);
  tft.setSwapBytes(true);
  tft.pushImage(0, 0, 240, 135, image);
}

void loop() {

}