Type Alias Sh1106ComponentType

Source
pub type Sh1106ComponentType<I> = Sh1106<'static, I2CDevice<'static, I>>;

Aliased Type§

struct Sh1106ComponentType<I> { /* private fields */ }

Implementations

Source§

impl<'a, I> Sh1106<'a, I>
where I: I2CDevice,

Source

pub fn new( i2c: &'a I, buffer: &'static mut [u8], enable_charge_pump: bool, ) -> Sh1106<'a, I>

Source

pub fn init_screen(&self)

Trait Implementations

Source§

impl<I> I2CClient for Sh1106<'_, I>
where I: I2CDevice,

Source§

fn command_complete( &self, buffer: &'static mut [u8], _status: Result<(), Error>, )

Called when an I2C command completed. The error denotes whether the command completed successfully or if an error occured.
Source§

impl<'a, I> Screen<'a> for Sh1106<'a, I>
where I: I2CDevice,

Source§

fn set_client(&self, client: &'a dyn ScreenClient)

Set the object to receive the asynchronous command callbacks.
Source§

fn get_resolution(&self) -> (usize, usize)

Get a tuple (width, height) with the current resolution (in pixels). Read more
Source§

fn get_pixel_format(&self) -> ScreenPixelFormat

Get the current pixel format. Read more
Source§

fn get_rotation(&self) -> ScreenRotation

Get the current rotation. Read more
Source§

fn set_write_frame( &self, x: usize, y: usize, width: usize, height: usize, ) -> Result<(), ErrorCode>

Sets the write frame. Read more
Source§

fn write( &self, data: SubSliceMut<'static, u8>, _continue: bool, ) -> Result<(), ErrorCode>

Write data from buffer to the selected write frame. Read more
Source§

fn set_brightness(&self, brightness: u16) -> Result<(), ErrorCode>

Set the display brightness value. Read more
Source§

fn set_power(&self, enabled: bool) -> Result<(), ErrorCode>

Controls the screen power supply. Read more
Source§

fn set_invert(&self, enabled: bool) -> Result<(), ErrorCode>

Controls the color inversion mode. Read more
Source§

impl<'a, I> ScreenSetup<'a> for Sh1106<'a, I>
where I: I2CDevice,

Source§

fn set_client(&self, client: &'a dyn ScreenSetupClient)

Source§

fn set_resolution(&self, _resolution: (usize, usize)) -> Result<(), ErrorCode>

Set the screen resolution in pixels with (X, Y). Read more
Source§

fn set_pixel_format(&self, _depth: ScreenPixelFormat) -> Result<(), ErrorCode>

Set the pixel format. Read more
Source§

fn set_rotation(&self, _rotation: ScreenRotation) -> Result<(), ErrorCode>

Set the rotation of the display. Read more
Source§

fn get_num_supported_resolutions(&self) -> usize

Get the number of supported resolutions. Read more
Source§

fn get_supported_resolution(&self, index: usize) -> Option<(usize, usize)>

Get the resolution specified by the given index. Read more
Source§

fn get_num_supported_pixel_formats(&self) -> usize

Get the number of the pixel formats supported. Read more
Source§

fn get_supported_pixel_format(&self, index: usize) -> Option<ScreenPixelFormat>

Get the pixel format specified by the given index. Read more