Randomly load Sleep Screen from /sleep/*bmp (if exists). (#71)

Load a random sleep screen. 

Only works for ".bmp" (not ".BMP"), but I think that's OK (we do the
same for EPUBs).
This commit is contained in:
Jonas Diemer
2025-12-19 14:17:26 +01:00
committed by GitHub
parent 7b5a63d220
commit 10d76dde12
2 changed files with 69 additions and 0 deletions

View File

@@ -11,4 +11,5 @@ class SleepActivity final : public Activity {
private:
void renderDefaultSleepScreen() const;
void renderCustomSleepScreen(const Bitmap& bitmap) const;
void renderPopup(const char* message) const;
};