mirror of
https://github.com/meshtastic/firmware.git
synced 2025-12-29 22:20:37 +00:00
Files
6429eca5e47aa1d438012a9886632a5cdbbec898
14 lines
297 B
C++
14 lines
297 B
C++
#ifdef MESHTASTIC_INCLUDE_INKHUD
|
|||
|
|||
#include "./BasicExampleApplet.h"
|
|||
|
|||
using namespace NicheGraphics;
|
|||
|
|||
// All drawing happens here
|
|||
// Our basic example doesn't do anything useful. It just passively prints some text.
|
|||
void InkHUD::BasicExampleApplet::onRender()
|
|||
{
|
|||
print("Hello, World!");
|
|||
}
|
|||
|
|||
#endif
|