1
0
ミラー元 https://github.com/Dejvino/lilybook.git 前回の同期 2025-09-15 18:30:13 +00:00
lilybook/main/modes/BootMode.cpp

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()
{}