Manual message scrolling

This commit is contained in:
HarukiToreda
2025-12-05 02:01:23 -05:00
parent 903ddb5b95
commit 1381bb1dfd
4 changed files with 100 additions and 19 deletions

View File

@@ -220,6 +220,10 @@ class Screen : public concurrency::OSThread
public:
OLEDDisplay *getDisplayDevice() { return dispdev; }
explicit Screen(ScanI2C::DeviceAddress, meshtastic_Config_DisplayConfig_OledType, OLEDDISPLAY_GEOMETRY);
// Screen dimension accessors
inline int getHeight() const { return displayHeight; }
inline int getWidth() const { return displayWidth; }
size_t frameCount = 0; // Total number of active frames
~Screen();