adafruit / circuitpython

CircuitPython - a Python implementation for teaching coding with microcontrollers
https://circuitpython.org
Other
4.12k stars 1.22k forks source link

Add Driver Library for ST7565 LCD with RGB Backlight #1505

Closed makermelissa closed 3 years ago

makermelissa commented 5 years ago

This LCD (https://www.adafruit.com/product/250) is supposed to work fine with 3V logic, so I think it should work fine with CircuitPython. After looking at the Arduino code for this LCD, it looks like it should probably have its own CP library as it's quite different than how most of the other LCDs work.

ladyada commented 5 years ago

yah it can use the adafruit_framebuf for sure, look at the nokia LCD library for the light wrapper

makermelissa commented 5 years ago

Presuming you were referring to Adafruit_CircuitPython_PCD8544. Yeah, that would probably be a good strategy.

deshipu commented 5 years ago

I have a micropython driver for this (well, very similar, anyways) display: https://bitbucket.org/thesheep/micropython-oled/src/default/uc1701x_spi.py

makermelissa commented 3 years ago

Fixed via https://github.com/adafruit/Adafruit_CircuitPython_ST7565/pull/1.