CircuitPython `displayio` drivers for SSD1675-based ePaper displays
Project description
Introduction
CircuitPython displayio drivers for SSD1675-based ePaper displays
Dependencies
This driver depends on:
Please ensure all dependencies are available on the CircuitPython filesystem. This is easily achieved by downloading the Adafruit library and driver bundle.
Installing from PyPI
On supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally from PyPI. To install for current user:
pip3 install adafruit-circuitpython-ssd1675
To install system-wide (this may be required in some cases):
sudo pip3 install adafruit-circuitpython-ssd1675
To install in a virtual environment in your current project:
mkdir project-name && cd project-name
python3 -m venv .venv
source .venv/bin/activate
pip3 install adafruit-circuitpython-ssd1675
Usage Example
"""Simple test script for 2.13" 250x122 black and white featherwing.
Supported products:
* Adafruit 2.13" Black and White FeatherWing
* https://www.adafruit.com/product/4195
"""
import time
import board
import busio
import displayio
import adafruit_ssd1675
displayio.release_displays()
epd_cs = board.D9
epd_dc = board.D10
display_bus = displayio.FourWire(board.SPI(), command=epd_dc, chip_select=epd_cs, baudrate=1000000)
time.sleep(1)
display = adafruit_ssd1675.SSD1675(display_bus, width=250, height=122, rotation=90)
g = displayio.Group()
f = open("/display-ruler.bmp", "rb")
pic = displayio.OnDiskBitmap(f)
# CircuitPython 6 & 7 compatible
t = displayio.TileGrid(
pic, pixel_shader=getattr(pic, "pixel_shader", displayio.ColorConverter())
)
# CircuitPython 7 compatible only
# t = displayio.TileGrid(pic, pixel_shader=pic.pixel_shader)
g.append(t)
display.show(g)
display.refresh()
print("refreshed")
time.sleep(120)
Documentation
API documentation for this library can be found on Read the Docs.
For information on building library documentation, please check out this guide.
Contributing
Contributions are welcome! Please read our Code of Conduct before contributing to help this project stay welcoming.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file adafruit-circuitpython-ssd1675-1.2.0.tar.gz
.
File metadata
- Download URL: adafruit-circuitpython-ssd1675-1.2.0.tar.gz
- Upload date:
- Size: 32.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 86f7f337d70a6910860d4b544638b66d1bfd05567c2ad15e3c012745d61a1d5b |
|
MD5 | ddb560c703e2652f2ed48bf7acd727c3 |
|
BLAKE2b-256 | 785d0d58c6d81192536f218b4df7b170a1b1c902977f6ba76f12a4ec3da3f1d8 |
File details
Details for the file adafruit_circuitpython_ssd1675-1.2.0-py3-none-any.whl
.
File metadata
- Download URL: adafruit_circuitpython_ssd1675-1.2.0-py3-none-any.whl
- Upload date:
- Size: 4.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f88473c9a5327d37ff99078327a80936e27b06666ecc528d02f2bad1a36e1813 |
|
MD5 | 7c4fa7d500036bbcfec1c697959bb12f |
|
BLAKE2b-256 | f1e4484a882d34ca5df524e17614bc447a60957b81fba97dd1df65f8adf98924 |