//My 1st TFT-LCD project! The starter one! :))
//More will follow...
/*
I found some interesting infos about this type of LCD here 
(maybe some of you already know):
https://www.orientdisplay.com/knowledge-base/tft-basics/how-does-tft-displays-work/
*/
#include "SPI.h"
#include "Adafruit_GFX.h"
#include "Adafruit_ILI9341.h"
#define TFT_DC 7
#define TFT_CS 10
Adafruit_ILI9341 tft = Adafruit_ILI9341(TFT_CS, TFT_DC);

void setup(){
  tft.begin(); tft.setCursor(0, 36);
  tft.setTextColor(ILI9341_WHITE, ILI9341_BLUE);
  tft.setTextSize(2);
  tft.println("Hello everyone! \nThis is the TFT-LCD \nILI9341. \nI wanted to try \nsomething...\nmore different!");
  tft.println("\n==================="); tft.println("\nEnjoy! :))");
  delay(1000); 
}

void loop(){}