Type Alias smart_leds_trait::RGB8

source ·
pub type RGB8 = RGB<u8>;
Expand description

8-bit RGB

The colorspace is technically undefined, but generally sRGB is assumed.

Aliased Type§

struct RGB8 {
    pub r: u8,
    pub g: u8,
    pub b: u8,
}

Fields§

§r: u8

Red

§g: u8

Green

§b: u8

Blue