pub struct MadGazeGlow { /* private fields */ }
Expand description

The main structure representing a connected Mad Gaze Glow glasses

Implementations§

source§

impl MadGazeGlow

source

pub fn new() -> Result<Self, Error>

Find a connected Mad Gaze Glow device and connect to it. Only one instance should be alive at a time.

source

pub fn set_sceen_brightness(&mut self, brightness: u8) -> Result<(), Error>

Set the screen brightness. Allowed values are between 1-7

Trait Implementations§

source§

impl ARGlasses for MadGazeGlow

source§

fn serial(&mut self) -> Result<String, Error>

Get the serial number of the glasses
source§

fn read_event(&mut self) -> Result<GlassesEvent, Error>

Get a single sensor event. Blocks.
source§

fn set_display_mode(&mut self, display_mode: DisplayMode) -> Result<(), Error>

Set the display mode of the glasses. See DisplayMode

Auto Trait Implementations§

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