arduboy_set_rgb_led

This commit is contained in:
PrimmR 2023-09-09 18:08:01 +01:00
parent 7da07df0f7
commit 360f7a79a1
2 changed files with 11 additions and 0 deletions

View file

@ -192,4 +192,8 @@ extern "C"
{
arduboy.digitalWriteRGB(red, green, blue);
}
void arduboy_set_rgb_led(uint8_t red, uint8_t green, uint8_t blue)
{
arduboy.setRGBled(red, green, blue);
}
}