ミラー元
https://github.com/Dejvino/lilybook.git
前回の同期 2025-07-02 01:12:23 +00:00
20 行
307 B
C++
20 行
307 B
C++
#include "core/common.h"
|
|
#include "core/display.h"
|
|
#include "ModeRunner.h"
|
|
#include "MainMenuMode.h"
|
|
#include "BootMode.h"
|
|
|
|
void BootMode::start()
|
|
{}
|
|
|
|
void BootMode::loop()
|
|
{
|
|
display_splash_screen();
|
|
delay(200);
|
|
|
|
getModeRunner()->startMainMode(new MainMenuMode());
|
|
}
|
|
|
|
void BootMode::finish()
|
|
{}
|