TFT ILI9341

I bought a TFT module 2.2 "ILI9341 and I'm using this library:

And that pin configuration

miso - D12
led - 3,3V
sck - D13
mosi - D11
dc - D6
reset - D4
cs - D5
gnd - GND
vcc - 3,3V

But the TFT only get the blank screen, and it works, what do I do?

I'm using this simple example, just to test

/*  Demo of draw circle's APP
    drawCircle(int poX, int poY, int r,INT16U color);
    fillCircle(int poX, int poY, int r,INT16U color);
*/

#include <stdint.h>
#include <TFTv2.h>
#include <SPI.h>

void setup()
{
    TFT_BL_ON;                                          //turn on the background light 
    
    Tft.TFTinit();                                      //init TFT library             

    Tft.drawCircle(100, 100, 30,YELLOW);                //center: (100, 100), r = 30 ,color : YELLOW              
    
    Tft.drawCircle(100, 200, 40,CYAN);                  // center: (100, 200), r = 10 ,color : CYAN  
    
    Tft.fillCircle(200, 100, 30,RED);                   //center: (200, 100), r = 30 ,color : RED    
    
    Tft.fillCircle(200, 200, 30,BLUE);                  //center: (200, 200), r = 30 ,color : BLUE                 
}

void loop()
{

}

/*********************************************************************************************************
  END FILE
*********************************************************************************************************/

Thank you

What board are you using?

I'm using Arduino Uno.

No one will help me ?

My schematic:

Thank you

There's a link from the source repository to the Seeed wiki for this product. It says that Vcc is 5V. Your schematic indicates that you're powering it with 3.3V. Is yours a 3.3V version and if so, is it viable to provide 5V (as you're doing) on the digital inputs?

That module

works with adafruit's ili9341 driver fine here with 1284p.
Double check the wiring, and use a resistor (ie. 15-33ohm) from 5V to LED.
Mind the module is 3.3V one (so the signals shall be). The adfruit's one (2.2 18-bit color TFT LCD display with microSD card breakout [EYESPI Connector] : ID 1480 : $24.95 : Adafruit Industries, Unique & fun DIY electronics and kits) has got a 5V/3.3V level shifter.

#include "SPI.h"
#include "Adafruit_GFX.h"
#include "Adafruit_ILI9341.h"

//    J2 header on ili9341 2.2inch tft module (from the top):
//    All signals 3.3V
// =======================================================
//   1   Vcc 5V (regulated to 3.3V on the module's pcb)
//   2   GND
//   3   CS   
//   4   RESET (must be kept High when not wired/used)
//   5   D/C   (must be used)
//   6   MOSI
//   7   SCK
//   8   LED   (wired to Vcc via a resistor ~15ohm)
//   9   MISO  (must not be wired/used when writing to the display only)

Hello Everybody.

I will test, later I post the result, ok

Hello Pito.

I used the above code and got this error in Arduino, see:

C:\Program Files\Arduino\libraries\Robot_Control\ArduinoRobot.cpp: In constructor 'RobotControl::RobotControl()':
C:\Program Files\Arduino\libraries\Robot_Control\ArduinoRobot.cpp:8: error: 'LCD_CS' was not declared in this scope
C:\Program Files\Arduino\libraries\Robot_Control\ArduinoRobot.cpp:8: error: 'DC_LCD' was not declared in this scope
C:\Program Files\Arduino\libraries\Robot_Control\ArduinoRobot.cpp:8: error: 'RST_LCD' was not declared in this scope
C:\Program Files\Arduino\libraries\Robot_Control\ArduinoRobot.cpp: In member function 'void RobotControl::begin()':
C:\Program Files\Arduino\libraries\Robot_Control\ArduinoRobot.cpp:18: error: 'MUXA' was not declared in this scope
C:\Program Files\Arduino\libraries\Robot_Control\ArduinoRobot.cpp:18: error: 'MUXB' was not declared in this scope
C:\Program Files\Arduino\libraries\Robot_Control\ArduinoRobot.cpp:18: error: 'MUXC' was not declared in this scope
C:\Program Files\Arduino\libraries\Robot_Control\ArduinoRobot.cpp:18: error: 'MUXD' was not declared in this scope
C:\Program Files\Arduino\libraries\Robot_Control\ArduinoRobot.cpp:19: error: 'MUX_IN' was not declared in this scope
C:\Program Files\Arduino\libraries\Robot_Control\ArduinoRobot.cpp:22: error: 'BUZZ' was not declared in this scope
C:\Program Files\Arduino\libraries\Robot_Control\ArduinoRobot.cpp:25: error: 'Serial1' was not declared in this scope

Thank you