epd_spectra/
lib.rs

1//! This library contains a driver written in Rust for the Spectra
2//! tri-colour (white, black, red) e-paper displays from
3//! [Pervasive Displays Inc](https://github.com/PervasiveDisplays).
4//!
5//! See the examples folder to get started.
6#![no_std]
7
8#[cfg(feature = "std")]
9extern crate std;
10
11pub mod driver;
12pub mod graphics;
13
14pub use driver::*;
15pub use graphics::*;