Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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 this issue Apr 15, 2023 · 2 comments

Comments

@brahmazstra
Copy link

No description provided.

@brahmazstra
Copy link
Author

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

#include "SPI.h"
#include <Adafruit_GFX.h>
#include <ILI9488.h>

#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
Copy link

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants