pub type Sh1106ComponentType<I> = Sh1106<'static, I2CDevice<'static, I>>;
Aliased Type§
struct Sh1106ComponentType<I> { /* private fields */ }
Implementations
Trait Implementations
Source§impl<'a, I> Screen<'a> for Sh1106<'a, I>where
I: I2CDevice,
impl<'a, I> Screen<'a> for Sh1106<'a, I>where
I: I2CDevice,
Source§fn set_client(&self, client: &'a dyn ScreenClient)
fn set_client(&self, client: &'a dyn ScreenClient)
Set the object to receive the asynchronous command callbacks.
Source§fn get_resolution(&self) -> (usize, usize)
fn get_resolution(&self) -> (usize, usize)
Get a tuple
(width, height)
with the current resolution (in pixels). Read moreSource§fn get_pixel_format(&self) -> ScreenPixelFormat
fn get_pixel_format(&self) -> ScreenPixelFormat
Get the current pixel format. Read more
Source§fn get_rotation(&self) -> ScreenRotation
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>
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>
fn write( &self, data: SubSliceMut<'static, u8>, _continue: bool, ) -> Result<(), ErrorCode>
Write data from
buffer
to the selected write frame. Read moreSource§fn set_brightness(&self, brightness: u16) -> Result<(), ErrorCode>
fn set_brightness(&self, brightness: u16) -> Result<(), ErrorCode>
Set the display brightness value. Read more
Source§impl<'a, I> ScreenSetup<'a> for Sh1106<'a, I>where
I: I2CDevice,
impl<'a, I> ScreenSetup<'a> for Sh1106<'a, I>where
I: I2CDevice,
fn set_client(&self, client: &'a dyn ScreenSetupClient)
Source§fn set_resolution(&self, _resolution: (usize, usize)) -> Result<(), ErrorCode>
fn set_resolution(&self, _resolution: (usize, usize)) -> Result<(), ErrorCode>
Set the screen resolution in pixels with
(X, Y)
. Read moreSource§fn set_pixel_format(&self, _depth: ScreenPixelFormat) -> Result<(), ErrorCode>
fn set_pixel_format(&self, _depth: ScreenPixelFormat) -> Result<(), ErrorCode>
Set the pixel format. Read more
Source§fn set_rotation(&self, _rotation: ScreenRotation) -> Result<(), ErrorCode>
fn set_rotation(&self, _rotation: ScreenRotation) -> Result<(), ErrorCode>
Set the rotation of the display. Read more
Source§fn get_num_supported_resolutions(&self) -> usize
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)>
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
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>
fn get_supported_pixel_format(&self, index: usize) -> Option<ScreenPixelFormat>
Get the pixel format specified by the given index. Read more