mirror of
https://github.com/meshtastic/firmware.git
synced 2026-01-14 13:57:24 +00:00
Files
da26ff5b95d6723cd415d0b328d0eaac32e7e87d
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
|