ssd1331 0.3.0

I2C/SPI driver for the SSD1331 OLED display controller
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// Enum of errors in this crate
///
/// Both error types `CommE` and `PinE` default to `()`
#[derive(Debug)]
pub enum Error<CommE = (), PinE = ()> {
    /// Communication error
    Comm(CommE),

    /// Pin setting error
    Pin(PinE),
}