mirror of
https://github.com/vicliu624/trail-mate.git
synced 2026-07-12 06:39:00 +00:00
d320b6511d
* Unify PlatformIO and ESP-IDF around a shared UI/runtime shell
24 lines
395 B
C++
24 lines
395 B
C++
/**
|
|
* @file ui_boot.h
|
|
* @brief Boot splash screen helpers.
|
|
*/
|
|
|
|
#ifndef UI_BOOT_H
|
|
#define UI_BOOT_H
|
|
|
|
#include "lvgl.h"
|
|
|
|
namespace ui::boot
|
|
{
|
|
|
|
// Show the boot splash overlay (background + logo fade-in).
|
|
void show();
|
|
|
|
// Signal that background loading is complete.
|
|
// Splash will hide after the minimum display time has elapsed.
|
|
void mark_ready();
|
|
|
|
} // namespace ui::boot
|
|
|
|
#endif // UI_BOOT_H
|