Struct st7735_lcd::ST7735

source ·
pub struct ST7735<SPI, DC, RST>
where SPI: SpiDevice, DC: OutputPin, RST: OutputPin,
{ /* private fields */ }
Expand description

ST7735 driver to connect to TFT displays.

Implementations§

source§

impl<SPI, DC, RST> ST7735<SPI, DC, RST>
where SPI: SpiDevice, DC: OutputPin, RST: OutputPin,

source

pub fn new( spi: SPI, dc: DC, rst: RST, rgb: bool, inverted: bool, width: u32, height: u32 ) -> Self

Creates a new driver instance that uses hardware SPI.

source

pub fn init<DELAY>(&mut self, delay: &mut DELAY) -> Result<(), ()>
where DELAY: DelayNs,

Runs commands to initialize the display.

source

pub fn hard_reset<DELAY>(&mut self, delay: &mut DELAY) -> Result<(), ()>
where DELAY: DelayNs,

source

pub fn set_orientation(&mut self, orientation: &Orientation) -> Result<(), ()>

source

pub fn set_offset(&mut self, dx: u16, dy: u16)

Sets the global offset of the displayed image

source

pub fn set_address_window( &mut self, sx: u16, sy: u16, ex: u16, ey: u16 ) -> Result<(), ()>

Sets the address window for the display.

source

pub fn set_pixel(&mut self, x: u16, y: u16, color: u16) -> Result<(), ()>

Sets a pixel color at the given coords.

source

pub fn write_pixels<P: IntoIterator<Item = u16>>( &mut self, colors: P ) -> Result<(), ()>

Writes pixel colors sequentially into the current drawing window

source

pub fn write_pixels_buffered<P: IntoIterator<Item = u16>>( &mut self, colors: P ) -> Result<(), ()>

source

pub fn set_pixels<P: IntoIterator<Item = u16>>( &mut self, sx: u16, sy: u16, ex: u16, ey: u16, colors: P ) -> Result<(), ()>

Sets pixel colors at the given drawing window

source

pub fn set_pixels_buffered<P: IntoIterator<Item = u16>>( &mut self, sx: u16, sy: u16, ex: u16, ey: u16, colors: P ) -> Result<(), ()>

Trait Implementations§

source§

impl<SPI, DC, RST> DrawTarget for ST7735<SPI, DC, RST>
where SPI: SpiDevice, DC: OutputPin, RST: OutputPin,

§

type Error = ()

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

type Color = Rgb565

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 clear(&mut self, color: Self::Color) -> Result<(), Self::Error>

Fill the entire display with a solid color. 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§

impl<SPI, DC, RST> OriginDimensions for ST7735<SPI, DC, RST>
where SPI: SpiDevice, DC: OutputPin, RST: OutputPin,

source§

fn size(&self) -> Size

Returns the size of the bounding box.

Auto Trait Implementations§

§

impl<SPI, DC, RST> Freeze for ST7735<SPI, DC, RST>
where DC: Freeze, RST: Freeze, SPI: Freeze,

§

impl<SPI, DC, RST> RefUnwindSafe for ST7735<SPI, DC, RST>

§

impl<SPI, DC, RST> Send for ST7735<SPI, DC, RST>
where DC: Send, RST: Send, SPI: Send,

§

impl<SPI, DC, RST> Sync for ST7735<SPI, DC, RST>
where DC: Sync, RST: Sync, SPI: Sync,

§

impl<SPI, DC, RST> Unpin for ST7735<SPI, DC, RST>
where DC: Unpin, RST: Unpin, SPI: Unpin,

§

impl<SPI, DC, RST> UnwindSafe for ST7735<SPI, DC, RST>
where DC: UnwindSafe, RST: UnwindSafe, SPI: UnwindSafe,

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> 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.