Problem TFT ILI9341

Hi, I buy a TFT screen with ILI9341 driver. I using Arduino Mega 2560 and this pin configuration in "graphictest" example from adafruit and the screen just is blank. Some help. Thanks.

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

DC 49
CS 53
RST 13
MISO 50
SCK 52
MOSI 51


Adafruit_ILI9341 tft = Adafruit_ILI9341(CS, DC, MOSI, SCK, RST, MISO);

You must provide level shifters on EVERY logic signal. The 3.3V ILI9341 does NOT like 5V logic from your MEGA2560.

Life is much simpler with a civilised 3.3V Arduino like Zero, Due, ...

For example, Marek Buriak's ILI9341_due library gives a dramatic performance.

David.

I have problem to get touch function working on Arduino DUE + MSP3218 (ILI9341 controller). I have using MOSI, MISO and SCK for touch function as well as for tft function. CS for tft pin 10, DS for tft pin 9 and T_CS for touch function on pin 8.

Do anybody now how to do it? Please help.

Djordje

https://forum.arduino.cc/index.php?topic=282106.0

Dear Ard_newbie,

I have tried your advice to use PaulStoffregen/ILI9341_t3 library but I get compiler error

D:\Arduino\libraries\ILI9341_t3-master/ILI9341_t3.h:466:9: error: 'KINETISK_SPI0' was not declared in this scope
sr = KINETISK_SPI0.SR;

And it seem it is problem because I use 32bit ARM controller on Arduino Due.

Please do you have some other advice. I must be wrong.

Thank you in advance,

Best regards,

Djordje

ILI9341_t3 is intended for the Teensy boards.
ILI9341_due from Marek Buriak is written for Due.

Yes, you can put ILI9341, XPT2046 and SD card all on the same hardware SPI bus.
Note that you will need to use different SPI SCK speeds. ILI9341 can work at 42MHz but XPT2046 needs to be slower e.g. 2MHz

XPT2046_Touchscreen library should work fine on the hardware SPI bus. It sets the SPI speed to 2MHz.

TFTLCDCyg uses separate GPIO pins for the XPT2046. URTouch library bit-bangs XPT2046. URTouch does not understand hardware SPI.

Since the Due has plenty of GPIO pins, it is reasonable to bit-bang the XPT2046.

I tend to use Uno, Zero, Nucleo, ... So I am happier with everything on the same hardware SPI bus.

David.

I used your instructions and it is all working good.

Thank you very much for your help and assistance.

All the best to you.

Djordje