Adafruit_CircuitPython_RGB_Display icon indicating copy to clipboard operation
Adafruit_CircuitPython_RGB_Display copied to clipboard

Drivers for RGB displays for Adafruit CircuitPython.

Results 11 Adafruit_CircuitPython_RGB_Display issues
Sort by recently updated
recently updated
newest added

https://github.com/adafruit/Adafruit_CircuitPython_RGB_Display/runs/6993443412?check_suite_focus=true#step:11:33

enhancement

There are missing type annotations for some functions in this library. The `typing` module does not exist on CircuitPython devices so the import needs to be wrapped in try/except to...

good first issue
Hacktoberfest
documentation

Consider that you will often write data bytes without a command byte, but will almost never write a command byte without data bytes. For example, after setting up the display...

Can I use adafruit_rgb_display.ssd1351 to control SSD1357 driver?

enhancement

Hello! I have two ST7789 lcds sharing the same SPI bus and I can draw on one or another screen but not on both at the same time (specifically, after...

administrator@raspberrypi:~ $ python3 rgb_display_ili9341test.py Traceback (most recent call last): File "/home/administrator/rgb_display_ili9341test.py", line 25, in spi = busio.SPI(clock=board.SCK, MOSI=board.MOSI, MISO=board.MISO) File "/usr/local/lib/python3.9/dist-packages/busio.py", line 365, in __init__ self._spi = _SPI(portId) File "/usr/local/lib/python3.9/dist-packages/adafruit_blinka/microcontroller/generic_linux/spi.py",...

What does it take to add LVGL support to this library?

``` from adafruit_rgb_display.st7789 import ST7789 display.fill(color565(255, 0, 0)) ``` ![IMG_20240203_162627](https://github.com/adafruit/Adafruit_CircuitPython_RGB_Display/assets/17733616/87213727-1887-4ab2-9b21-d5122bc7a132)

The line https://github.com/adafruit/Adafruit_CircuitPython_RGB_Display/blob/7ecfffe3deac982f8698e72da7033b836c07ecd5/examples/rgb_display_minipitftstats.py#L90 plus a few just below it use the deprecated function getsize() which has been removed in the latest release of Pillow. Using getbbox() instead and then using...

I have a simple application that updates a screen (Adafruit 1.14" 240x135 Color TFT Display + MicroSD Card Breakout - ST7789 Product ID: 4383) from a Pi Zero W 2,...