tft last rx fix

This commit is contained in:
richonguzman 2024-07-11 07:35:34 -04:00
parent 2c7fdbc3fe
commit 758e8412f8
2 changed files with 7 additions and 2 deletions

View File

@ -45,7 +45,7 @@ TinyGPSPlus gps;
OneButton userButton = OneButton(BUTTON_PIN, true, true);
#endif
String versionDate = "2024.07.05";
String versionDate = "2024.07.11";
uint8_t myBeaconsIndex = 0;
int myBeaconsSize = Config.beacons.size();

View File

@ -594,7 +594,12 @@ namespace MENU_Utils {
} else {
fifthRowMainMenu = "LAST Rx = ";
fifthRowMainMenu += MSG_Utils::getLastHeardTracker();
}
}
#ifdef HAS_TFT
for (int z = fifthRowMainMenu.length(); z < 22; z++) {
fifthRowMainMenu += " ";
}
#endif
if (POWER_Utils::getBatteryInfoIsConnected()) {
String batteryVoltage = POWER_Utils::getBatteryInfoVoltage();