Hi.
I have a 3.5'' TFT display that I got from aliexpress: https://goo.gl/DvX99f
I am trying to hook it up with my Arduino Mega 2560 using 4 Wire SPI. So far it seems to work with
jaretburkett's git library( GitHub - jaretburkett/ILI9488: Arduino Library for the ILI9488 TFT controller for 4 wire SPI ). The problem is that it is way too slow. A fillScreen takes almost 10 seconds which is unacceptable for my project.
I also tried to modify Adafruit_ILI9341 library myself but since I am fairly new to this, no luck so far. My best result on this one was to get something on one part of the screen and with totally wrong colors.
I made sure to use 3.3v logic level shifters from the Arduino. So far my connections look like this:
ILI9488 Mega
GND ---> GND
VCC ---> 3.3V
LED ---> 3.3V
CS ---> D10
D/C ---> D9
SCK ---> D52
MOSI ---> D51
I wonder if someone can help me find a better library to use. Thanks.