Struct st7567s::display::ST7567S

source ·
pub struct ST7567S<DI, MODE> { /* private fields */ }
Expand description

ST7565S display driver

Works in two modes:

  • Direct Write Mode (by default): This mode allows you to write directly to the display memory by calling the draw method.
  • Buffered Mode: This mode allows you to modify an internal buffer by using methods like set_pixel, clear, or by using the embedded-graphics crate. Once you have made your changes, you can call the flush method to write the buffer to the display.

Implementations§

source§

impl<DI: WriteOnlyDataCommand> ST7567S<DI, DirectWriteMode>

source

pub fn new(display_interface: DI) -> Self

Create new instance of ST7565S driver in DirectWriteMode

Arguments
  • display_interface - The interface abstraction from display_interface crate
source

pub fn into_buffered_graphics_mode(self) -> ST7567S<DI, BufferedMode>

Move driver to buffered mode

source§

impl<DI: WriteOnlyDataCommand> ST7567S<DI, BufferedMode>

source

pub fn clear(&mut self)

Clear internal buffer

source

pub fn set_pixel( &mut self, x: u8, y: u8, value: bool ) -> Result<(), DisplayError>

Set pixel in internal buffer

Pixel coordinates starts from top left corner and goes to bottom right corner

source

pub fn flush(&mut self) -> Result<(), DisplayError>

Send internal buffer to the display

source§

impl<DI: WriteOnlyDataCommand, MODE> ST7567S<DI, MODE>

source

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

Send init commands to the display and turn it on

source

pub fn reset(&mut self) -> Result<(), DisplayError>

Reset some display parameters to default values: Start Line, Column Address, Page Address and COM Direction. Usually doesn’t need to be called

source

pub fn draw(&mut self, buffer: &[u8]) -> Result<(), DisplayError>

Send buffer to the display

Buffer represents by 8 pages of 128 columns where 1 byte represents 8 vertical pixels

source

pub fn bounded_draw( &mut self, buffer: &[u8], top_left: (u8, u8), bottom_right: (u8, u8) ) -> Result<(), DisplayError>

Send part of the buffer to the display. Buffer represents by 8 pages of 128 columns where 1 byte represents 8 vertical pixels

Arguments
  • buffer - the entire buffer from which the required part will be sent
  • top_left and bottom_right are coordinates of the top left and bottom right corners of the area to be drawn

Trait Implementations§

source§

impl<DI: WriteOnlyDataCommand> DrawTarget for ST7567S<DI, BufferedMode>

§

type Color = BinaryColor

The pixel color type the targetted display supports.
§

type Error = DisplayError

Error type to return when a drawing operation fails. Read more
source§

fn draw_iter<I>(&mut self, pixels: I) -> Result<(), Self::Error>where I: IntoIterator<Item = Pixel<Self::Color>>,

Draw individual pixels to the display without a defined order. Read more
source§

fn fill_contiguous<I>( &mut self, area: &Rectangle, colors: I ) -> Result<(), Self::Error>where I: IntoIterator<Item = Self::Color>,

Fill a given area with an iterator providing a contiguous stream of pixel colors. Read more
source§

fn fill_solid( &mut self, area: &Rectangle, color: Self::Color ) -> Result<(), Self::Error>

Fill a given area with a solid color. Read more
source§

fn clear(&mut self, color: Self::Color) -> Result<(), Self::Error>

Fill the entire display with a solid color. Read more
source§

impl<DI: WriteOnlyDataCommand> OriginDimensions for ST7567S<DI, BufferedMode>

source§

fn size(&self) -> Size

Returns the size of the bounding box.

Auto Trait Implementations§

§

impl<DI, MODE> RefUnwindSafe for ST7567S<DI, MODE>where DI: RefUnwindSafe, MODE: RefUnwindSafe,

§

impl<DI, MODE> Send for ST7567S<DI, MODE>where DI: Send, MODE: Send,

§

impl<DI, MODE> Sync for ST7567S<DI, MODE>where DI: Sync, MODE: Sync,

§

impl<DI, MODE> Unpin for ST7567S<DI, MODE>where DI: Unpin, MODE: Unpin,

§

impl<DI, MODE> UnwindSafe for ST7567S<DI, MODE>where DI: UnwindSafe, MODE: UnwindSafe,

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Az for T

source§

fn az<Dst>(self) -> Dstwhere T: Cast<Dst>,

Casts the value.
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<Src, Dst> CastFrom<Src> for Dstwhere Src: Cast<Dst>,

source§

fn cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T> CheckedAs for T

source§

fn checked_as<Dst>(self) -> Option<Dst>where T: CheckedCast<Dst>,

Casts the value.
source§

impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere Src: CheckedCast<Dst>,

source§

fn checked_cast_from(src: Src) -> Option<Dst>

Casts the value.
source§

impl<T> Dimensions for Twhere T: OriginDimensions,

source§

fn bounding_box(&self) -> Rectangle

Returns the bounding box.
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · 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> OverflowingAs for T

source§

fn overflowing_as<Dst>(self) -> (Dst, bool)where T: OverflowingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> OverflowingCastFrom<Src> for Dstwhere Src: OverflowingCast<Dst>,

source§

fn overflowing_cast_from(src: Src) -> (Dst, bool)

Casts the value.
source§

impl<T> SaturatingAs for T

source§

fn saturating_as<Dst>(self) -> Dstwhere T: SaturatingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> SaturatingCastFrom<Src> for Dstwhere Src: SaturatingCast<Dst>,

source§

fn saturating_cast_from(src: Src) -> Dst

Casts the value.
source§

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

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

impl<T> UnwrappedAs for T

source§

fn unwrapped_as<Dst>(self) -> Dstwhere T: UnwrappedCast<Dst>,

Casts the value.
source§

impl<Src, Dst> UnwrappedCastFrom<Src> for Dstwhere Src: UnwrappedCast<Dst>,

source§

fn unwrapped_cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T> WrappingAs for T

source§

fn wrapping_as<Dst>(self) -> Dstwhere T: WrappingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> WrappingCastFrom<Src> for Dstwhere Src: WrappingCast<Dst>,

source§

fn wrapping_cast_from(src: Src) -> Dst

Casts the value.