From 4aaf9074d5db1055c67f2d91bde1f4f113f7e5b6 Mon Sep 17 00:00:00 2001 From: moononournation Date: Wed, 18 May 2022 18:36:32 +0800 Subject: [PATCH] v1.2.3 --- README.md | 7 +++---- library.properties | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 40f9b5d2..ed27ac03 100644 --- a/README.md +++ b/README.md @@ -159,18 +159,17 @@ Most tiny displays in hobbyist electronics world support 8-bit SPI, but some req Larger displays most likely do not support standalone SPI since it is not fast enough to refresh the full screen details. Most of them support 8-bit/16-bit Parallel interface. -Some larger display require 3-bit SPI + RGB combo interface, i.e. require more than 3 + 24 pins. Most dev board do not have enough GPIO to support this. Arduino_GFX will eventually support this combo interface but will be in very low priority. A huge monthly sponsor may make it happen :P +Some larger display require RGB + 3-bit SPI combo interface, This interface requies at most 3(9-bit SPI) + 4(CS, CD, WR, RD) + 24(RBG888) = 31 pins. Most dev board do not have enough GPIO to support this. Arduino_GFX is stick to RGB565 color, so RGB666 and RGB888 require some connection hack. E.g. RGB666 connect R5 and R6 together, B5 and B6 together to become RGB565. Then the least GPIO requirement can become 3(9-bit SPI) + 2(CD, WR) + 16(RBG565) = 21 pins. **Remember always pull down CS pin and always pull up RD pin.** ## Currently Supported data bus [[Wiki](https://github.com/moononournation/Arduino_GFX/wiki/Data-Bus-Class)] - 8-bit and 9-bit hardware SPI (ESP32SPI) - 8-bit hardware SPI (HWSPI, ESP8266SPI, mbedSPI, NRFXSPI, RPiPicoSPI) - 8-bit and 9-bit software SPI (SWSPI) -- 8-bit parallel interface (AVRPAR8, ESP32PAR8, ESP32S2PAR8, RPiPicoPAR8, RTLPAR8) -- 16-bit parallel interface (ESP32PAR16, ESP32S2PAR8, RPiPicoPAR16) +- 8-bit parallel interface (SWPAR8, AVRPAR8, ESP32I2S8, ESP32PAR8, ESP32S2PAR8, RPiPicoPAR8, RTLPAR8, STM32PAR8) +- 16-bit parallel interface (ESP32LCD16, ESP32PAR16, ESP32S2PAR16, RPiPicoPAR16) - RGB565+SPI interface (ESP32RGBPanel) ## Tobe Support data bus (Sponsors can make it happen) -- ESP32 I2S 8-bit/16-bit parallel interface - Arduino ATMega2560 dual 8-bit Port form 16-bit parallel interface - FastLED diff --git a/library.properties b/library.properties index 69aec7ff..e00a1285 100644 --- a/library.properties +++ b/library.properties @@ -3,5 +3,5 @@ version=1.2.3 author=Moon On Our Nation maintainer=Moon On Our Nation sentence=Arduino_GFX is a GFX library for various color displays with various data bus interfaces -paragraph=Arduino_GFX is a Arduino graphics library. Currently support GC9A01 round display, GC9106, HX8347C, HX8347D, HX8352C, HX8357A, HX8357B, ILI9225, ILI9341, ILI9342(M5Stack), ILI9481(18bit), ILI9486(18bit), ILI9488(3bit and 18bit), ILI9806, JBT6K71, NT35310, NT35510, NT39125, R61529, SEPS525, SSD1283A, SSD1331, SSD1351, ST7735(various resolution), ST7789(various resolution) and ST7796. Currently support software SPI (8-bit and 9-bit), hardware SPI (8-bit, ESP32 also support 9-bit), 8-bit parallel interface(AVR, ESP32, RPi Pico, RTL8720) and 16-bit parallel interface(ESP32 and RPi Pico). +paragraph=Arduino_GFX is a Arduino graphics library. Currently support GC9A01 round display, GC9106, HX8347C, HX8347D, HX8352C, HX8357A, HX8357B, ILI9225, ILI9331, ILI9341, ILI9342(M5Stack), ILI9481(16bit and 18bit), ILI9486(16bit and 18bit), ILI9488(3bit, 16bit and 18bit), ILI9806, JBT6K71, NT35310, NT35510, NT39125, R61529, SEPS525, SSD1283A, SSD1331, SSD1351, ST7701(REGPanel), ST7735(various resolution), ST7789(various resolution) and ST7796. Currently support software SPI (8-bit and 9-bit), hardware SPI (8-bit, ESP32 also support 9-bit), 8-bit parallel interface(AVR, ESP32, RPi Pico, RTL8720, STM32), 16-bit parallel interface(ESP32 and RPi Pico) and RGB Panel interface(ESP32S3). url=https://github.com/moononournation/Arduino_GFX