mirror of
https://github.com/meshtastic/firmware.git
synced 2026-01-22 01:37:52 +00:00
12 lines
275 B
C++
12 lines
275 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 |