mirror of
https://github.com/meshtastic/firmware.git
synced 2025-06-08 22:22:05 +00:00
Make startup screen show the short ID (#6591)
* Update the short ID show on the boot up screen function
This commit is contained in:
parent
64c8bde04a
commit
e5cd0d613c
@ -11,10 +11,19 @@ InkHUD::LogoApplet::LogoApplet() : concurrency::OSThread("LogoApplet")
|
|||||||
OSThread::setIntervalFromNow(8 * 1000UL);
|
OSThread::setIntervalFromNow(8 * 1000UL);
|
||||||
OSThread::enabled = true;
|
OSThread::enabled = true;
|
||||||
|
|
||||||
|
// During onboarding, show the default short name as well as the version string
|
||||||
|
// This behavior assists manufacturers during mass production, and should not be modified without good reason
|
||||||
|
if (!settings->tips.safeShutdownSeen) {
|
||||||
|
fontTitle = fontLarge;
|
||||||
|
textLeft = xstr(APP_VERSION_SHORT);
|
||||||
|
textRight = owner.short_name;
|
||||||
|
textTitle = "Meshtastic";
|
||||||
|
} else {
|
||||||
|
fontTitle = fontSmall;
|
||||||
textLeft = "";
|
textLeft = "";
|
||||||
textRight = "";
|
textRight = "";
|
||||||
textTitle = xstr(APP_VERSION_SHORT);
|
textTitle = xstr(APP_VERSION_SHORT);
|
||||||
fontTitle = fontSmall;
|
}
|
||||||
|
|
||||||
bringToForeground();
|
bringToForeground();
|
||||||
// This is then drawn with a FULL refresh by Renderer::begin
|
// This is then drawn with a FULL refresh by Renderer::begin
|
||||||
|
Loading…
Reference in New Issue
Block a user