tft last rx fix
This commit is contained in:
parent
2c7fdbc3fe
commit
758e8412f8
|
|
@ -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();
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Reference in New Issue