您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

20 行
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(200);
  12. getModeRunner()->startMainMode(new MainMenuMode());
  13. }
  14. void BootMode::finish()
  15. {}