[−][src]Trait embedded_hal::blocking::i2c::Write
Blocking write
Associated Types
type Error
Error type
Required methods
fn try_write(&mut self, address: A, bytes: &[u8]) -> Result<(), Self::Error>
Sends bytes to slave with address address
I2C Events (contract)
Master: ST SAD+W B0 B1 ... BN SP
Slave: SAK SAK SAK ... SAK
Where
ST
= start conditionSAD+W
= slave address followed by bit 0 to indicate writingSAK
= slave acknowledgeBi
= ith byte of dataSP
= stop condition
Implementors
impl<A, E, S> Write<A> for S where
A: AddressMode,
S: Default<A> + Transactional<A, Error = E>,
[src]
A: AddressMode,
S: Default<A> + Transactional<A, Error = E>,