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

@@ -59,6 +59,12 @@ void handleNewMessage(OLEDDisplay *display, const StoredMessage &sm, const mesht
// Clear Message Line Cache from Message Renderer
void clearMessageCache();
void scrollUp();
void scrollDown();
// Determines if a line is a header line
bool isHeader(const std::string &line);
} // namespace MessageRenderer
} // namespace graphics
#endif