mirror of
https://github.com/Dejvino/lilybook.git
synced 2024-11-14 12:23:28 +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(500);
|
||
|
|
||
|
getModeRunner()->startMainMode(new MainMenuMode());
|
||
|
}
|
||
|
|
||
|
void BootMode::finish()
|
||
|
{}
|