pub trait I2cExt: Sized + Instance {
    fn i2c<SCL, SDA>(
        self,
        pins: (SCL, SDA),
        mode: impl Into<Mode>,
        clocks: &Clocks
    ) -> I2c<Self, (SCL, SDA)>
    where
        (SCL, SDA): Pins<Self>
; }

Required Methods

Implementors