mirror of
https://github.com/meshtastic/firmware.git
synced 2026-01-21 01:07:51 +00:00
Files
e6a98b1d6b953a312cb892bfdbd5ed6872561f8f
13 lines
279 B
C++
13 lines
279 B
C++
#ifdef MESHTASTIC_INCLUDE_INKHUD
|
|||
|
|||
#include "./PlaceholderApplet.h"
|
|||
|
|||
using namespace NicheGraphics;
|
|||
|
|||
void InkHUD::PlaceholderApplet::onRender()
|
|||
{
|
|||
// This placeholder applet fills its area with sparse diagonal lines
|
|||
hatchRegion(0, 0, width(), height(), 8, BLACK);
|
|||
}
|
|||
|
|||
#endif
|