100#define NUM_LED_COLORS 3
101#define NUM_LEDS (NUM_GREEN_LEDS + NUM_COLOR_LEDS)
195 const int blue_onoff);
void color_led_onoff(const int red_onoff, const int green_onoff, const int blue_onoff)
Switches on/off the red/green/blue components of color LED 0.
void leds_init_onoff(void)
Initialize the green LEDs for on/off use.
void green_leds_init_pwm(void)
Initialize the green LEDs for use with variable intensity. The LED intensity can range from 0....
void green_led_off(const int led)
Same as green_led_onoff(led, LED_OFF). Works in all modes.
void color_led_red_onoff(const int onoff)
Switches on/off the red component of color LED 0.
void color_led_off(void)
Set color LED 0 to black. Same as color_led_onoff(LED_OFF, LED_OFF, LED_OFF).
color_led_index_t
Enum of color LEDs. Functions for color LEDs use a led number from 0..NUM_COLOR_LEDS-1....
void color_led_on(void)
Set color LED 0 to white. Same as color_led_onoff(LED_ON, LED_ON, LED_ON).
void green_led_on(const int led)
Same as green_led_onoff(led, LED_ON). Works in all modes.
void color_led_blue_onoff(const int onoff)
Switches on/off the blue component of color LED 0.
void color_led_green_onoff(const int onoff)
Switches on/off the green component of color LED 0.
void color_leds_init_pwm(void)
Initialize the color LEDs for use with variable intensity. The LED intensity can range from 0....
void green_led_onoff(const int led, const int onoff)
green_led_index_t
Enum of green LEDs. Functions for green LEDs use a led number from 0..NUM_GREEN_LEDS-1....