1
2
3
4
5
6
7
8
9
10
11
//! A list of all LED variables available
///Just a `const` for the red led
pub const RED_LED: u8 = 10;
///Just a `const` for the green led
pub const GREEN_LED: u8 = 11;
///Just a `const` for the blue led
pub const BLUE_LED: u8 = 9;
///Just a `const` for led on
pub const RGB_ON: u8 = 1;
///Just a `const` for led off
pub const RGB_OFF: u8 = 0;