mirror of
https://github.com/meshtastic/firmware.git
synced 2025-06-18 11:02:16 +00:00
15 lines
336 B
C++
15 lines
336 B
C++
#pragma once
|
|
#include "OLEDDisplay.h"
|
|
#include "OLEDDisplayUi.h"
|
|
|
|
namespace graphics
|
|
{
|
|
namespace MessageRenderer
|
|
{
|
|
|
|
/// Draws the text message frame for displaying received messages
|
|
void drawTextMessageFrame(OLEDDisplay *display, OLEDDisplayUiState *state, int16_t x, int16_t y);
|
|
|
|
} // namespace MessageRenderer
|
|
} // namespace graphics
|