work on pro LED, add rainbow test

This commit is contained in:
joeycastillo
2023-02-03 15:45:39 -06:00
parent 60e431d3d7
commit 4fcf33d175
6 changed files with 120 additions and 3 deletions

View File

@@ -44,6 +44,11 @@ void watch_set_led_color(uint8_t red, uint8_t green) {
}, red, green);
}
void watch_set_led_color_rgb(uint8_t red, uint8_t green, uint8_t blue) {
(void) blue;
watch_set_led_color(red, green);
}
void watch_set_led_red(void) {
watch_set_led_color(255, 0);
}