[][src]Struct ssd1306::mode::graphics::GraphicsMode

pub struct GraphicsMode<DI> where
    DI: DisplayInterface
{ /* fields omitted */ }

Graphics mode handler

Methods

impl<DI> GraphicsMode<DI> where
    DI: DisplayInterface
[src]

pub fn clear(&mut self)[src]

Clear the display buffer. You need to call disp.flush() for any effect on the screen

pub fn reset<RST, DELAY>(&mut self, rst: &mut RST, delay: &mut DELAY) where
    RST: OutputPin,
    DELAY: DelayMs<u8>, 
[src]

Reset display

pub fn flush(&mut self) -> Result<(), ()>[src]

Write out data to display

pub fn set_pixel(&mut self, x: u32, y: u32, value: u8)[src]

Turn a pixel on or off. A non-zero value is treated as on, 0 as off. If the X and Y coordinates are out of the bounds of the display, this method call is a noop.

pub fn init(&mut self) -> Result<(), ()>[src]

Display is set up in column mode, i.e. a byte walks down a column of 8 pixels from column 0 on the left, to column n on the right

pub fn get_dimensions(&self) -> (u8, u8)[src]

Get display dimensions, taking into account the current rotation of the display

pub fn set_rotation(&mut self, rot: DisplayRotation) -> Result<(), ()>[src]

Set the display rotation

Trait Implementations

impl<DI> DisplayModeTrait<DI> for GraphicsMode<DI> where
    DI: DisplayInterface
[src]

fn new(properties: DisplayProperties<DI>) -> Self[src]

Create new GraphicsMode instance

fn release(self) -> DisplayProperties<DI>[src]

Release all resources used by GraphicsMode

impl<DI> Drawing<PixelColorU8> for GraphicsMode<DI> where
    DI: DisplayInterface
[src]

Auto Trait Implementations

impl<DI> Send for GraphicsMode<DI> where
    DI: Send

impl<DI> Sync for GraphicsMode<DI> where
    DI: Sync

Blanket Implementations

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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