gdeh0154d67 0.3.0

Driver for the GDEH0154D67 E-Paper display.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Currently this module is work in progress.
use thiserror_no_std::Error;

#[derive(Error, Debug)]
pub enum Error {
    #[error("unknown error")]
    Unknown,
}

#[cfg(feature = "std")]
impl std::error::Error for Error {}