weact_studio_epd/
lib.rs

1#![doc = include_str!("../README.md")]
2#![no_std]
3#![cfg_attr(docsrs, feature(doc_cfg))]
4#![warn(missing_docs)]
5
6/// Color definitions
7mod color;
8mod command;
9mod driver;
10mod flag;
11#[cfg_attr(docsrs, doc(cfg(feature = "graphics")))]
12#[cfg(feature = "graphics")]
13/// `embedded-graphics` support.
14pub mod graphics;
15mod lut;
16
17pub use color::{Color, TriColor};
18pub use driver::*;
19
20/// Alias for `Result<T, DisplayError>`.
21pub type Result<T> = core::result::Result<T, display_interface::DisplayError>;