[][src]Enum tm1637_gpio_driver::ISA

#[repr(u8)]pub enum ISA {
    DataCommandWriteToDisplay,
    AddressCommandD0,
    AddressCommandD1,
    AddressCommandD2,
    AddressCommandD3,
    DisplayControlOff,
    DisplayControlOnL0,
    DisplayControlOnL1,
    DisplayControlOnL2,
    DisplayControlOnL3,
    DisplayControlOnL4,
    DisplayControlOnL5,
    DisplayControlOnL6,
    DisplayControlOnL7,
}

The "ISA"/Commands of the TM1637. See data sheet for more information. This is only a subset of the possible values.

Variants

DataCommandWriteToDisplay

Start instruction

AddressCommandD0

Starts at display address zero. Each further byte that is send will go into the next display address. The micro controller does an internal auto increment of the address. See the data sheet for more information.

AddressCommandD1
AddressCommandD2
AddressCommandD3
DisplayControlOff

Command that sets the display off.

DisplayControlOnL0

Command that sets the display on with lowest brightness.

DisplayControlOnL1
DisplayControlOnL2
DisplayControlOnL3
DisplayControlOnL4
DisplayControlOnL5
DisplayControlOnL6
DisplayControlOnL7

Command that sets the display on with highest brightness.

Auto Trait Implementations

impl Send for ISA

impl Sync for ISA

impl Unpin for ISA

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.