Use this forum to chat about hardware specific topics for the ESP8266 (peripherals, memory, clocks, JTAG, programming)

User avatar
By TonyK59
#71214 Hello, I have tried a zilion combinations trying to address this LCD. Some refer to it as a ILI9163 board, others as a ST7735 board. Did someone manage to get it to work ? If so, please could you share your wiring diagram and a sample code ? The PIN layouts are very confuing to me (DC, A0, SDA, SCK, ...)

Many thanks for your help !

Tony
User avatar
By reaper7
#71219 TFT ILI9163 and ST7735 are very similar as pcb's, ST7735 is also offered in several variations.
...so, it's not so easy :)

SDA (input data pin) -> must be connected to processor SPI MOSI line (Master Output Slave Input)
SCL (clock line) -> must be connected to processor SPI CLK line
DC (or sometimes A0) -> informs the display that the data or command is sent
CS (chip select) -> informs the display (when this line is LOW) that the information are directed to this device(in this case display)

If You are on arduino, please try this lib (it supports both ILI9163 and ST7735):
https://github.com/Bodmer/TFT_eSPI
You can customize display type and pins configuration inside:
https://github.com/Bodmer/TFT_eSPI/blob ... er_Setup.h