pub trait LcdTextWrite { // Required method fn write(&mut self, address: u8, data: u8) -> Result<(), LcdTextError>; }
Character LCD write adapter for platform crates.
Write one byte to the configured LCD I2C expander.