Files
crosspoint-reader/src/screens/SleepScreen.h

9 lines
183 B
C
Raw Normal View History

2025-12-06 04:20:03 +11:00
#pragma once
#include "Screen.h"
class SleepScreen final : public Screen {
public:
explicit SleepScreen(EpdRenderer* renderer) : Screen(renderer) {}
void onEnter() override;
};