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);
|
OneButton userButton = OneButton(BUTTON_PIN, true, true);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
String versionDate = "2024.07.05";
|
String versionDate = "2024.07.11";
|
||||||
|
|
||||||
uint8_t myBeaconsIndex = 0;
|
uint8_t myBeaconsIndex = 0;
|
||||||
int myBeaconsSize = Config.beacons.size();
|
int myBeaconsSize = Config.beacons.size();
|
||||||
|
|
|
||||||
|
|
@ -594,7 +594,12 @@ namespace MENU_Utils {
|
||||||
} else {
|
} else {
|
||||||
fifthRowMainMenu = "LAST Rx = ";
|
fifthRowMainMenu = "LAST Rx = ";
|
||||||
fifthRowMainMenu += MSG_Utils::getLastHeardTracker();
|
fifthRowMainMenu += MSG_Utils::getLastHeardTracker();
|
||||||
}
|
}
|
||||||
|
#ifdef HAS_TFT
|
||||||
|
for (int z = fifthRowMainMenu.length(); z < 22; z++) {
|
||||||
|
fifthRowMainMenu += " ";
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
if (POWER_Utils::getBatteryInfoIsConnected()) {
|
if (POWER_Utils::getBatteryInfoIsConnected()) {
|
||||||
String batteryVoltage = POWER_Utils::getBatteryInfoVoltage();
|
String batteryVoltage = POWER_Utils::getBatteryInfoVoltage();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue