epd-spectra 0.4.0

Driver for Spectra EPDs from Pervasive Displays Inc
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! This library contains a driver written in Rust for the Spectra
//! tri-colour (white, black, red) e-paper displays from
//! [Pervasive Displays Inc](https://github.com/PervasiveDisplays).
//!
//! See the examples folder to get started.
#![no_std]

#[cfg(feature = "std")]
extern crate std;

pub mod driver;
pub mod graphics;

pub use driver::*;
pub use graphics::*;