#include "SPI.h"
#include <Adafruit_GFX.h>
#include <Adafruit_ILI9341.h>       // include Adafruit graphics library
   // include Adafruit ILI9341 TFT library
 
#define TFT_DC   9      // TFT CS  pin is connected to arduino pin 8
#define TFT_CS   10   // TFT RST pin is connected to arduino pin 9
    // TFT DC  pin is connected to arduino pin 10
// initialize ILI9341 TFT library
Adafruit_ILI9341 tft = Adafruit_ILI9341(TFT_CS, TFT_DC);
 
void setup() {
  tft.begin();
  tft.setCursor(26,120);
  tft.setTextColor(ILI9341_RED);
  tft.setTextSize(3);
  tft.println("DHONI!");
}
 
 
void loop(void) {

  
  }