24#ifndef _WATCH_LED_H_INCLUDED
25#define _WATCH_LED_H_INCLUDED
void watch_set_led_color(uint8_t red, uint8_t green)
Sets the LED to a custom color by modulating each output's duty cycle.
void watch_set_led_red(void)
Sets the red LED to full brightness, and turns the green LED off.
void watch_set_led_yellow(void)
Sets both red and green LEDs to full brightness.
void watch_set_led_off(void)
Turns both the red and the green LEDs off.
void watch_enable_leds(void)
Enables the bi-color LED.
void watch_disable_leds(void)
Disables the LEDs.
void watch_set_led_green(void)
Sets the green LED to full brightness, and turns the red LED off.
void watch_set_led_color_rgb(uint8_t red, uint8_t green, uint8_t blue)
On boards with an RGB LED, sets the LED to a custom color by modulating each output's duty cycle.