#include <Adafruit_GFX.h>
#include <Adafruit_ST7735.h>
#include <SPI.h>

#define cs 10
#define dc 9
#define rst 8

void setup() {
  // put your setup code here, to run once:
  Adafruit_ST7735 tft = Adafruit_ST7735(cs, dc, rst);
  tft.initR(INITR_GREENTAB);

  tft.fillScreen(ST77XX_BLACK);
  tft.setTextWrap(false);
  tft.setCursor(45, 5);    //Horiz/Vertic
  tft.setTextSize(2);
  tft.setTextColor(ST77XX_YELLOW);
  tft.print("USA");
}

void loop() {
  // put your main code here, to run repeatedly:

}
