Trait microbit::hal::prelude::_embedded_hal_blocking_i2c_Write [−]
pub trait _embedded_hal_blocking_i2c_Write<A = u8> where
A: AddressMode, {
type Error;
fn write(&mut self, address: A, bytes: &[u8]) -> Result<(), Self::Error>;
}Expand description
Blocking write
Associated Types
type Error
type Error
Error type
Required methods
Writes bytes to slave with address address
I2C Events (contract)
Master: ST SAD+W B0 B1 ... BN SP
Slave: SAK SAK SAK ... SAKWhere
ST= start conditionSAD+W= slave address followed by bit 0 to indicate writingSAK= slave acknowledgeBi= ith byte of dataSP= stop condition