update Arduboy library

Add support for microcade
This commit is contained in:
Mr.Blinky 2022-12-11 15:23:17 +01:00
parent 32e8b1d25c
commit 02d29b6ca0
1 changed files with 4 additions and 0 deletions

View File

@ -80,7 +80,11 @@ void Arduboy::bootLogo()
}
delay(750);
#if defined(MICROCADE)
setRGBled(255,255,255);
#else
setRGBled(0,0,0);
#endif
}
/* Frame management */