Lots of minor changes

This commit is contained in:
2026-02-14 18:29:55 +01:00
parent 8d5e41846b
commit d79358fa48
9 changed files with 2486 additions and 3293 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -9,9 +9,9 @@ public:
tft->setTextColor(TFT_WHITE, background);
tft->setTextDatum(TL_DATUM);
auto data = "[" + String(millis() / 1000.0f) + "] " + text;
tft->fillRect(0, y, tft->textWidth(data), tft->fontHeight(0), background);
tft->drawString(data, 0, y, 0);
y += tft->fontHeight(0);
tft->fillRect(0, y, tft->textWidth(data), tft->fontHeight(2), background);
tft->drawString(data, 0, y, 2);
y += tft->fontHeight(2);
}
void reset() {
y = 0;