[][src]Struct sh1106::builder::Builder

pub struct Builder<CS = NoOutputPin> { /* fields omitted */ }

Builder struct. Driver options and interface are set using its methods.

Methods

impl Builder[src]

pub fn new() -> Builder<NoOutputPin>[src]

Create new builder with a default size of 128 x 64 pixels and no rotation.

impl<CS, PinE> Builder<CS> where
    CS: OutputPin<Error = PinE>, 
[src]

pub fn with_size(self, display_size: DisplaySize) -> Self[src]

Set the size of the display. Supported sizes are defined by DisplaySize.

pub fn with_i2c_addr(self, i2c_addr: u8) -> Self[src]

Set the I2C address to use. Defaults to 0x3C which is the most common address. The other address specified in the datasheet is 0x3D. Ignored when using SPI interface.

pub fn with_rotation(self, rotation: DisplayRotation) -> Self[src]

Set the rotation of the display to one of four values. Defaults to no rotation.

pub fn with_spi_cs<NEWCS>(self, spi_cs: NEWCS) -> Builder<NEWCS> where
    NEWCS: OutputPin
[src]

Set the SPI chip select (CS) pin to use. The CS pin is not required for the controller for function, but can be used if the bus is shared with other devices. If not used, the CS pin on the controller should be connected to ground. Ignored when using I2C interface.

pub fn connect_i2c<I2C, CommE>(
    self,
    i2c: I2C
) -> DisplayMode<RawMode<I2cInterface<I2C>>> where
    I2C: Write<Error = CommE>, 
[src]

Finish the builder and use I2C to communicate with the display

pub fn connect_spi<SPI, DC, CommE>(
    self,
    spi: SPI,
    dc: DC
) -> DisplayMode<RawMode<SpiInterface<SPI, DC, CS>>> where
    SPI: Transfer<u8, Error = CommE> + Write<u8, Error = CommE>,
    DC: OutputPin<Error = PinE>,
    CS: OutputPin<Error = PinE>, 
[src]

Finish the builder and use SPI to communicate with the display

Trait Implementations

impl<CS: Copy> Copy for Builder<CS>[src]

impl<CS: Clone> Clone for Builder<CS>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for Builder[src]

Auto Trait Implementations

impl<CS> Unpin for Builder<CS> where
    CS: Unpin

impl<CS> Sync for Builder<CS> where
    CS: Sync

impl<CS> Send for Builder<CS> where
    CS: Send

Blanket Implementations

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]