Add AP info and reduce button array size

This commit is contained in:
Just Call Me Koko
2025-04-01 18:13:02 -04:00
parent f4634638a9
commit 1bc2b36c9c
6 changed files with 76 additions and 28 deletions

View File

@@ -270,8 +270,13 @@ void Display::touchToExit()
void Display::clearScreen()
{
//Serial.println(F("clearScreen()"));
tft.fillScreen(TFT_BLACK);
tft.setCursor(0, 0);
#ifndef MARAUDER_V7
tft.fillScreen(TFT_BLACK);
tft.setCursor(0, 0);
#else
tft.fillRect(0, 0, TFT_WIDTH, TFT_HEIGHT, TFT_BLACK);
tft.setCursor(0, 0);
#endif
}
#ifdef SCREEN_BUFFER