Type Alias smart_leds::RGB16

pub type RGB16 = RGB<u16>;
Expand description

16-bit RGB in machine’s native endian

Be careful to perform byte-swapping when reading from files.

Aliased Type§

struct RGB16 {
    pub r: u16,
    pub g: u16,
    pub b: u16,
}

Fields§

§r: u16

Red

§g: u16

Green

§b: u16

Blue