mirror of
https://github.com/meshtastic/firmware.git
synced 2026-01-22 01:37:52 +00:00
Files
abab6ce81568d3ca32f47ad4a0eff2dbff9e0608
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
|