Merge branch 'master' into arduino-esp32-v3.2

This commit is contained in:
Manuel
2025-07-01 00:56:56 +02:00
committed by GitHub
11 changed files with 72 additions and 60 deletions

View File

@@ -107,8 +107,8 @@ int SystemCommandsModule::handleInputEvent(const InputEvent *event)
return true;
// Power control
case INPUT_BROKER_SHUTDOWN:
LOG_ERROR("Shutting down");
IF_SCREEN(screen->showOverlayBanner("Shutting down..."));
LOG_ERROR("Shutting Down");
IF_SCREEN(screen->showOverlayBanner("Shutting Down..."));
nodeDB->saveToDisk();
shutdownAtMsec = millis() + DEFAULT_SHUTDOWN_SECONDS * 1000;
// runState = CANNED_MESSAGE_RUN_STATE_INACTIVE;
@@ -119,4 +119,4 @@ int SystemCommandsModule::handleInputEvent(const InputEvent *event)
break;
}
return false;
}
}