#display #embedded-hal-driver #epaper #spi-driver #epd #spi-interface

no-std ssd1675

Driver for the SSD1675 e-Paper display (EPD) controller, for use with embedded-hal

5 releases (breaking)

Uses old Rust 2015

0.5.0 Mar 2, 2022
0.4.0 Feb 8, 2022
0.3.0 Jul 20, 2020
0.2.0 Mar 20, 2020
0.1.0 Dec 26, 2018

#607 in Embedded development

MIT/Apache

195KB
879 lines

SSD1675 ePaper Display Driver

Rust driver for the Solomon Systech SSD1675 e-Paper display (EPD) controller, for use with embedded-hal.

Build Status codecov crates.io Documentation

Photo of Inky pHAT ePaper display on Raspberry Pi Zero W

Description

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.

Tested Devices

The library has been tested and confirmed working on these devices:

  • Red/Black/White Inky pHAT version 2 on Raspberry Pi Zero (pictured above)

Examples

Note: To build the examples the examples feature needs to be enabled. E.g.

cargo build --release --examples --features examples

Raspberry Pi with Inky pHAT

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.

Credits

License

ssd1675 is dual licenced under:

Dependencies

~0.5–1.5MB
~23K SLoC