Edzelf / Esp-radio

Internet radio based on Esp8266 and VS1053.
MIT License
624 stars 200 forks source link

Pinout for TFT lcd with ST7735S controller #95

Open Mantikor opened 7 years ago

Mantikor commented 7 years ago

Pinout for TFT lcd with ST7735S controller esp-radio-tft-st7735s-pinout

vadpol commented 7 years ago

Still a new display library should be used due to chip change ILI9163C --> ST7735C. Also suspect different display commands then. Any recommendation on that?

Edzelf commented 7 years ago

I think any display will do. But since only a few functions are used, it will not be too difficult to implement a different display.

Mantikor commented 7 years ago

no any changes needed for this type of display, different only pinout markup

srspinho commented 6 years ago

img_20180720_190618 Thank You Mantikor ! !

The ST7735 display worked like a Charm here ! No need to change anything on the code.

JOliverasC commented 4 years ago

I changed the library and few lines...

//#include

include

//TFT_ILI9163C tft = TFT_ILI9163C ( TFT_CS, TFT_DC ) ; Adafruit_ST7735 tft = Adafruit_ST7735(TFT_CS, TFT_DC, TFT_RST); // TFT_RTS defined as -1

//tft.begin(); // Init TFT interface tft.initR(INITR_BLACKTAB); // Init ST7735S chip, black tab tft.setRotation ( 3 ) ; // Use landscape format tft.fillRect ( 0, 0, 160, 128, BLACK ) ; // Clear screen does not work when rotated //tft.clearScreen() ; WhatsApp Image 2020-08-04 at 20 27 53