Type Alias RGB8

Source
pub type RGB8 = Rgb<u8>;
Available on crate feature smart-leds-trait only.
Expand description

8-bit RGB

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

Aliased Type§

#[repr(C)]
pub struct RGB8 { pub r: u8, pub g: u8, pub b: u8, }

Fields§

§r: u8

Red Component

§g: u8

Green Component

§b: u8

Blue Component