Add new boot logo screen

This commit is contained in:
Dave Allie
2025-12-06 00:35:58 +11:00
parent 05a027e2bf
commit 248af4b8fb
4 changed files with 31 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
#pragma once
#include "Screen.h"
class BootLogoScreen final : public Screen {
public:
explicit BootLogoScreen(EpdRenderer* renderer): Screen(renderer) {}
void onEnter() override;
};