Add bitaxe logo

This commit is contained in:
kdmukai 2024-12-17 08:53:00 -06:00
parent d6604d28d6
commit db0ec01c86
3 changed files with 264 additions and 6 deletions

View file

@ -603,10 +603,12 @@ void renderIcon(const uint dispNum, const String &text, bool partial)
if (text.endsWith("rocket")) {
iconIndex = 1;
}
if (text.endsWith("lnbolt")) {
else if (text.endsWith("lnbolt")) {
iconIndex = 3;
}
else if (text.endsWith("bitaxe")) {
iconIndex = 4;
}
displays[dispNum].drawInvertedBitmap(0,0, epd_icons_allArray[iconIndex], 122, 250, getFgColor());