summaryrefslogtreecommitdiff
path: root/HelloWorld/HelloWorld.ino
blob: ad56df40be4e8517ce68c457809280831268b2dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include"TFT_eSPI.h"

TFT_eSPI tft;

void setup() {
  tft.begin();
  tft.setRotation(3);
  tft.fillScreen(TFT_BLACK);
  tft.setTextColor(TFT_GREEN);
  tft.setTextSize(4);
  tft.drawString("Hello world!", 20, 100);

}

void loop() {

}