Rust driver for the Solomon Systech SSD1675 e-Paper display (EPD) controller, for use with embedded-hal.
This driver is intended to work on embedded platforms using the embedded-hal
trait library. It is no_std
compatible, builds on stable Rust, and only uses
safe Rust. It supports the 4-wire SPI interface.
The library has been tested and confirmed working on these devices:
- Red/Black/White Inky pHAT version 2 on Raspberry Pi Zero (pictured above)
Note: To build the examples the examples
feature needs to be enabled. E.g.
cargo build --release --examples --features examples
The Raspberry Pi Inky pHAT
example,
shows how to display information on an Inky pHAT using this crate. The photo
at the top of the page shows this example in action. To avoid the need to
compile on the Raspberry Pi itself I recommend cross-compiling with the cross
tool. With cross
installed build the example as follows:
cross build --target=arm-unknown-linux-gnueabi --release --example raspberry_pi_inky_phat --features examples
After it is built copy
target/arm-unknown-linux-gnueabi/release/examples/raspberry_pi_inky_phat
to
the Raspberry Pi.
- Waveshare EPD driver
- SSD1306 OLED display driver
- SSD1322 OLED display driver
- Pimoroni Python library for the Inky pHAT and Inky wHAT e-paper displays
ssd1675
is dual licenced under:
- Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)