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

TFT_eSPI tft; //initialize TFT LCD

void setup() {
  tft.begin(); //start TFT LCD
  tft.setRotation(3); //set screen rotation

  tft.fillScreen(TFT_RED); //fill background

  tft.setTextColor(TFT_BLACK); //set text color
  tft.setTextSize(4); //set text size
  tft.drawString("Hello world!",0,0); //draw text string

}

void loop() {

}