[][src]Trait ssd1351::interface::DisplayInterface

pub trait DisplayInterface {
    fn send_command(&mut self, cmd: u8) -> Result<(), ()>;
fn send_data(&mut self, cmd: &[u8]) -> Result<(), ()>; }

Required methods

fn send_command(&mut self, cmd: u8) -> Result<(), ()>

fn send_data(&mut self, cmd: &[u8]) -> Result<(), ()>

Loading content...

Implementors

impl<SPI, DC> DisplayInterface for SpiInterface<SPI, DC> where
    SPI: Write<u8>,
    DC: OutputPin
[src]

Loading content...