mirror of
https://github.com/Dejvino/lilybook.git
synced 2024-11-13 03:47:30 +00:00
20 lines
307 B
C++
20 lines
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()
|
|
{}
|