adafruit / Adafruit_CircuitPython_SSD1327

DisplayIO drivers for grayscale OLEDs driven by SSD1327
MIT License
2 stars 6 forks source link

Using Screen on Raspberry Pi Without CircuitPython Image #22

Open r3w0p opened 7 months ago

r3w0p commented 7 months ago

To get this screen working on a Raspberry Pi Zero 2 W without having to use a CircuitPython image, I needed the following Python dependencies:

adafruit-blinka-displayio
adafruit-circuitpython-display-text
adafruit-circuitpython-ssd1327
RPi.GPIO

I've opened this issue for others that may be struggling to do the same thing because I couldn't find instructions anywhere.

makermelissa commented 7 months ago

The guide for using blinka displayio is here: https://learn.adafruit.com/running-pyportal-code-on-blinka-with-displayio. I could add some tags to make it easier to find. What kinds of keywords were you searching for?

r3w0p commented 7 months ago

What I needed was to quickly use this display in Python and have it be deployed onto a Raspberry Pi. I did this very quickly and easily with the SSD1306 because the guide states all of the requirements clearly. However, I had to do a lot of digging to eventually find the requirements I have listed above.