Merge branch 'main' of github.com:ZennDev1337/Rust-for-Arduboy
This commit is contained in:
commit
4fd55e8642
9 changed files with 155 additions and 4 deletions
|
@ -192,4 +192,12 @@ extern "C"
|
|||
{
|
||||
arduboy.digitalWriteRGB(red, green, blue);
|
||||
}
|
||||
void arduboy_set_rgb_led_single(uint8_t color, uint8_t val)
|
||||
{
|
||||
arduboy.setRGBled(color, val);
|
||||
}
|
||||
void arduboy_set_rgb_led(uint8_t red, uint8_t green, uint8_t blue)
|
||||
{
|
||||
arduboy.setRGBled(red, green, blue);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue