Struct st7920::ST7920

source ·
pub struct ST7920<SPI, RST, CS>
where SPI: SpiDevice, RST: OutputPin, CS: OutputPin,
{ /* private fields */ }

Implementations§

source§

impl<SPI, RST, CS, PinError, SPIError> ST7920<SPI, RST, CS>
where SPI: SpiDevice<Error = SPIError>, RST: OutputPin<Error = PinError>, CS: OutputPin<Error = PinError>,

source

pub fn new(spi: SPI, rst: RST, cs: Option<CS>, flip: bool) -> Self

Create a new ST7920<SPI, RST, CS> driver instance that uses SPI connection.

§Examples
use st7920::ST7920;

let result = ST7920::new(spi, GPIO::new(pins.p01), None, false);
assert_eq!(result, );
source

pub fn init<Delay: DelayNs>( &mut self, delay: &mut Delay ) -> Result<(), Error<SPIError, PinError>>

Initialize the display controller

source

pub fn modify_buffer(&mut self, f: fn(x: u8, y: u8, v: u8) -> u8)

Modify the raw buffer. 1 byte (u8) = 8 pixels

§Examples
let mut st7920 = st7920::ST7920(...);
// add crazy pattern
st7920.modify_buffer(|x, y, v| {
    if x % 2 == y % 2 {
        v | 0b10101010
    } else {
        v
    }
});
st7920.flush();
source

pub fn clear_buffer(&mut self)

clears the buffer but don’t update the display

source

pub fn clear<Delay: DelayNs>( &mut self, delay: &mut Delay ) -> Result<(), Error<SPIError, PinError>>

Clear whole display area and clears the buffer

source

pub fn clear_buffer_region( &mut self, x: u8, y: u8, w: u8, h: u8 ) -> Result<(), Error<SPIError, PinError>>

Clear a buffer region.

If the region is completely off screen, nothing will be done and Ok()) will be returned. If the given width or height are too big, width and height will be trimmed to the screen dimensions.

source

pub fn set_pixel(&mut self, x: u8, y: u8, val: u8)

Draw pixel

Doesn’t draw anything, if the x or y coordinates are off canvas.

Supported values are 0 and (not 0)

source

pub fn set_pixel_unchecked(&mut self, x: u8, y: u8, val: u8)

Draw pixel without canvas bounds checking.

Supported values are 0 and (not 0)

§Panics

May panic or draw to undefined pixels, if x or y coordinates are off canvas.

source

pub fn flush<Delay: DelayNs>( &mut self, delay: &mut Delay ) -> Result<(), Error<SPIError, PinError>>

Flush buffer to update entire display

source

pub fn flush_region<Delay: DelayNs>( &mut self, x: u8, y: u8, w: u8, h: u8, delay: &mut Delay ) -> Result<(), Error<SPIError, PinError>>

Flush buffer to update region of the display

If the region is completely off screen, nothing will be done and Ok()) will be returned. If the given width or height are too big, width and height will be trimmed to the screen dimensions.

source§

impl<SPI, RST, CS, PinError, SPIError> ST7920<SPI, RST, CS>
where SPI: SpiDevice<Error = SPIError>, RST: OutputPin<Error = PinError>, CS: OutputPin<Error = PinError>,

source

pub fn flush_region_graphics<Delay: DelayNs>( &mut self, region: (Point, Size), delay: &mut Delay ) -> Result<(), Error<SPIError, PinError>>

Trait Implementations§

source§

impl<SPI, CS, RST, PinError, SPIError> DrawTarget for ST7920<SPI, CS, RST>
where SPI: SpiDevice<Error = SPIError>, RST: OutputPin<Error = PinError>, CS: OutputPin<Error = PinError>,

§

type Error = Infallible

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

type Color = BinaryColor

The pixel color type the targetted display supports.
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<SPI, CS, RST, PinError, SPIError> OriginDimensions for ST7920<SPI, CS, RST>
where SPI: SpiDevice<Error = SPIError>, RST: OutputPin<Error = PinError>, CS: OutputPin<Error = PinError>,

source§

fn size(&self) -> Size

Returns the size of the bounding box.

Auto Trait Implementations§

§

impl<SPI, RST, CS> Freeze for ST7920<SPI, RST, CS>
where CS: ErrorType + Freeze, RST: ErrorType + Freeze, SPI: ErrorType + Freeze,

§

impl<SPI, RST, CS> RefUnwindSafe for ST7920<SPI, RST, CS>

§

impl<SPI, RST, CS> Send for ST7920<SPI, RST, CS>
where CS: ErrorType + Send, RST: ErrorType + Send, SPI: ErrorType + Send,

§

impl<SPI, RST, CS> Sync for ST7920<SPI, RST, CS>
where CS: ErrorType + Sync, RST: ErrorType + Sync, SPI: ErrorType + Sync,

§

impl<SPI, RST, CS> Unpin for ST7920<SPI, RST, CS>
where CS: ErrorType + Unpin, RST: ErrorType + Unpin, SPI: ErrorType + Unpin,

§

impl<SPI, RST, CS> UnwindSafe for ST7920<SPI, RST, CS>

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> Az for T

source§

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

Casts the value.
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<Src, Dst> CastFrom<Src> for Dst
where 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 Dst
where Src: CheckedCast<Dst>,

source§

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

Casts the value.
source§

impl<T> Dimensions for T

source§

fn bounding_box(&self) -> Rectangle

Returns the bounding box.
source§

impl<T> DrawTargetExt for T
where T: DrawTarget,

source§

fn translated(&mut self, offset: Point) -> Translated<'_, T>

Creates a translated draw target based on this draw target. Read more
source§

fn cropped(&mut self, area: &Rectangle) -> Cropped<'_, T>

Creates a cropped draw target based on this draw target. Read more
source§

fn clipped(&mut self, area: &Rectangle) -> Clipped<'_, T>

Creates a clipped draw target based on this draw target. Read more
source§

fn color_converted<C>(&mut self) -> ColorConverted<'_, T, C>
where C: PixelColor + Into<<T as DrawTarget>::Color>,

Creates a color conversion draw target. 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> 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 Dst
where 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) -> Dst
where T: SaturatingCast<Dst>,

Casts the value.
source§

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

source§

fn saturating_cast_from(src: Src) -> Dst

Casts the value.
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<T> UnwrappedAs for T

source§

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

Casts the value.
source§

impl<Src, Dst> UnwrappedCastFrom<Src> for Dst
where 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) -> Dst
where T: WrappingCast<Dst>,

Casts the value.
source§

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

source§

fn wrapping_cast_from(src: Src) -> Dst

Casts the value.