Skip to main content

LcdTextWrite

Trait LcdTextWrite 

Source
pub trait LcdTextWrite {
    // Required method
    fn write(&mut self, address: u8, data: u8) -> Result<(), LcdTextError>;
}
Expand description

Character LCD write adapter for platform crates.

Required Methods§

Source

fn write(&mut self, address: u8, data: u8) -> Result<(), LcdTextError>

Write one byte to the configured LCD I2C expander.

Implementors§