OledScreen32x128

Struct OledScreen32x128 

Source
pub struct OledScreen32x128 { /* private fields */ }

Implementations§

Source§

impl OledScreen32x128

Source

pub fn from_path(device_path: &CStr) -> Result<Self, HidError>

Source

pub fn from_id(vid: u16, pid: u16, usage_page: u16) -> Result<Self, HidError>

Source

pub fn from_device(device: impl HidAdapter + 'static) -> Result<Self, HidError>

Source

pub fn draw_image<P: AsRef<Path>>( &mut self, bitmap_file: P, x: usize, y: usize, scale: bool, )

Source

pub fn draw_text( &mut self, text: &str, x: usize, y: usize, size: f32, font_path: Option<&str>, )

Source

pub fn send(&self) -> Result<(), HidError>

Source

pub fn clear(&mut self)

Source

pub fn fill_all(&mut self)

Source

pub fn paint_region( &mut self, min_x: usize, min_y: usize, max_x: usize, max_y: usize, enabled: bool, )

Source

pub fn get_pixel(&self, x: usize, y: usize) -> bool

Source

pub fn set_pixel(&mut self, x: usize, y: usize, enabled: bool)

Underlying function for drawing to the canvas, if provided coordinates are out of range, this function will fail silently

§Arguments
  • x - The x coordinate of the pixel to set
  • y - The y coordinate of the pixel to set
  • enabled - Whether to set the pixel to an enabled or disabled state (on/off)

Trait Implementations§

Source§

impl Display for OledScreen32x128

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

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

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

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

Source§

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

Source§

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.