st7565 0.6.0

Driver for ST7565 based displays.
Documentation
1
2
3
4
5
6
7
8
9
10
use display_interface::DisplayError;

/// Errors in this crate
#[derive(Debug)]
pub enum Error<PinE> {
    /// Communication error
    Comm(DisplayError),
    /// Pin setting error
    Pin(PinE),
}