ssd1306 0.10.0

I2C/SPI driver for the SSD1306 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),
}