Skip to main content

LcdTextWrite

Trait LcdTextWrite 

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

Character LCD write adapter for platform crates.

Required Methods§

Source

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

Write one byte to the configured LCD I2C expander.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§