Files
firmware/src/graphics/niche/InkHUD/Applets/System/Placeholder/PlaceholderApplet.cpp
2026-01-03 14:19:24 -06:00

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