ssd1320 0.1.0

SPI driver for the SSD1320(z2) OLED display controller
Documentation
1
2
3
4
5
6
7
8
/// Errors in this crate
#[derive(Debug)]
pub enum Error<CommE, PinE> {
    /// Communication error
    Comm(CommE),
    /// Pin setting error
    Pin(PinE),
}