jaretburkett / ILI9488

Arduino Library for the ILI9488 TFT controller for 4 wire SPI
82 stars 40 forks source link

i use ili9488 to arduino nano anda i connect rts 13,cs 12,rs 11. after i try the example from the ili9488 library, the lcd just white screen. i need a help how to fix this,please thank you #24

Open brahmazstra opened 1 year ago

brahmazstra commented 1 year ago

this is my setup pin. i connect my rs pin to dc pin, are they have same function?

include "SPI.h"

include

include

define TFT_CS 12

define TFT_DC 11//my lcd pin RS

define TFT_RST 13

ILI9488 tft = ILI9488(TFT_CS, TFT_DC, TFT_RST);

username7291 commented 1 year ago

Use the wireing like in the example. Arduino SPI Pins are defined in Hardware you cant use 10/11/12/13 like you want.

define TFT_CS 10

define TFT_DC 9

define TFT_RST 12

SCK is 13, 11 is Data.