feat(ui): simplify solo splash label, remove outdated WIOTRACKER_L1.md

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
MarekZegare4
2026-06-12 09:46:45 +02:00
parent ea9681075d
commit 5ec61477e6
2 changed files with 2 additions and 73 deletions

View File

@@ -86,9 +86,9 @@ public:
display.setColor(DisplayDriver::DARK);
char solo_label[24];
if (_solo_ver[0])
snprintf(solo_label, sizeof(solo_label), "Solo %s for Wio", _solo_ver);
snprintf(solo_label, sizeof(solo_label), "Solo %s", _solo_ver);
else
snprintf(solo_label, sizeof(solo_label), "Solo for Wio");
snprintf(solo_label, sizeof(solo_label), "Solo");
display.drawTextCentered(display.width()/2, solo_y, solo_label);
display.setColor(DisplayDriver::LIGHT);
#endif