You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

20 lines
307 B

  1. #include "core/common.h"
  2. #include "core/display.h"
  3. #include "ModeRunner.h"
  4. #include "MainMenuMode.h"
  5. #include "BootMode.h"
  6. void BootMode::start()
  7. {}
  8. void BootMode::loop()
  9. {
  10. display_splash_screen();
  11. delay(500);
  12. getModeRunner()->startMainMode(new MainMenuMode());
  13. }
  14. void BootMode::finish()
  15. {}