[−][src]Struct ssd1306::builder::Builder
Builder struct. Driver options and interface are set using its methods.
Methods
impl Builder
[src]
pub fn new() -> Self
[src]
Create new builder with a default size of 128 x 64 pixels and no rotation.
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. Note that
90º and 270º rotations are not supported by
TerminalMode
.
pub fn connect_i2c<I2C>(
&self,
i2c: I2C
) -> DisplayMode<RawMode<I2cInterface<I2C>>> where
I2C: Write,
[src]
&self,
i2c: I2C
) -> DisplayMode<RawMode<I2cInterface<I2C>>> where
I2C: Write,
Finish the builder and use I2C to communicate with the display
pub fn connect_spi<SPI, DC>(
&self,
spi: SPI,
dc: DC
) -> DisplayMode<RawMode<SpiInterface<SPI, DC>>> where
SPI: Transfer<u8> + Write<u8>,
DC: OutputPin,
[src]
&self,
spi: SPI,
dc: DC
) -> DisplayMode<RawMode<SpiInterface<SPI, DC>>> where
SPI: Transfer<u8> + Write<u8>,
DC: OutputPin,
Finish the builder and use SPI to communicate with the display
Trait Implementations
impl Clone for Builder
[src]
fn clone(&self) -> Builder
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Copy for Builder
[src]
impl Default for Builder
[src]
Auto Trait Implementations
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> TryFrom for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,