Files
trail-mate/modules/ui_shared/include/ui/ui_boot.h
T
vicliu d320b6511d Unify PlatformIO and ESP-IDF around a shared UI/runtime shellRefactor/repo structure (#11)
* Unify PlatformIO and ESP-IDF around a shared UI/runtime shell
2026-03-12 01:17:46 +08:00

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