Trait embedded_hal::blocking::i2c::WriteIter
source · pub trait WriteIter {
type Error;
fn write<B>(&mut self, addr: u8, bytes: B) -> Result<(), Self::Error>
where
B: IntoIterator<Item = u8>;
}
Expand description
Blocking write (iterator version)