adafruit / Adafruit_CircuitPython_SSD1680

CircuitPython `displayio` driver for SSD1680-based ePaper displays
MIT License
7 stars 7 forks source link

README should support 8.x and 9.x #23

Open rsbohn opened 10 months ago

rsbohn commented 10 months ago

Adafruit CircuitPython 8.2.8 on 2023-11-16; Raspberry Pi Pico with rp2040

# Starting in CircuitPython 9.x fourwire will be a seperate internal library
# rather than a component of the displayio library
try:
    from fourwire import FourWire
except ImportError:
    from displayio import FourWire

Followed the README, couldn't figure out where to get fourwire. Eventually realized that I needed to use displayio.FourWire with 8.2.8.