Struct capsules_extra::st77xx::ST77XX

source ·
pub struct ST77XX<'a, A: Alarm<'a>, B: Bus<'a, BusAddr8>, P: Pin> { /* private fields */ }

Implementations§

source§

impl<'a, A: Alarm<'a>, B: Bus<'a, BusAddr8>, P: Pin> ST77XX<'a, A, B, P>

source

pub fn new( bus: &'a B, alarm: &'a A, dc: Option<&'a P>, reset: Option<&'a P>, buffer: &'static mut [u8], sequence_buffer: &'static mut [SendCommand], screen: &'static ST77XXScreen, ) -> ST77XX<'a, A, B, P>

source

pub fn init(&self) -> Result<(), ErrorCode>

Trait Implementations§

source§

impl<'a, A: Alarm<'a>, B: Bus<'a, BusAddr8>, P: Pin> AlarmClient for ST77XX<'a, A, B, P>

source§

fn alarm(&self)

Callback indicating the alarm time has been reached. The alarm MUST be disabled when this is called. If a new alarm is needed, the client can call Alarm::set_alarm.
source§

impl<'a, A: Alarm<'a>, B: Bus<'a, BusAddr8>, P: Pin> Client for ST77XX<'a, A, B, P>

source§

fn command_complete( &self, buffer: Option<&'static mut [u8]>, _len: usize, status: Result<(), ErrorCode>, )

Called when set_addr, write or read are complete Read more
source§

impl<'a, A: Alarm<'a>, B: Bus<'a, BusAddr8>, P: Pin> Screen<'a> for ST77XX<'a, A, B, P>

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_write: bool, ) -> Result<(), ErrorCode>

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

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

Set the object to receive the asynchronous command callbacks.
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, A: Alarm<'a>, B: Bus<'a, BusAddr8>, P: Pin> ScreenSetup<'a> for ST77XX<'a, A, B, P>

source§

fn set_client(&self, setup_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

Auto Trait Implementations§

§

impl<'a, A, B, P> !Freeze for ST77XX<'a, A, B, P>

§

impl<'a, A, B, P> !RefUnwindSafe for ST77XX<'a, A, B, P>

§

impl<'a, A, B, P> !Send for ST77XX<'a, A, B, P>

§

impl<'a, A, B, P> !Sync for ST77XX<'a, A, B, P>

§

impl<'a, A, B, P> Unpin for ST77XX<'a, A, B, P>

§

impl<'a, A, B, P> !UnwindSafe for ST77XX<'a, A, B, P>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<'a, T> ScreenAdvanced<'a> for T
where T: Screen<'a> + ScreenSetup<'a>,