mirror of
https://github.com/vicliu624/trail-mate.git
synced 2026-08-14 22:59:51 +00:00
Integrate the T-Echo Lite board, e-paper driver path, physical keypad input, mono UI refactor, and initial 192x176 layout adaptations.
14 lines
326 B
C++
14 lines
326 B
C++
#pragma once
|
|
|
|
#include "nrf52_node_target_board.h"
|
|
|
|
namespace trailmate::apps::nrf52_node::ui_runtime
|
|
{
|
|
bool initialize();
|
|
void bindChatObservers();
|
|
void appendBootLog(const char* line);
|
|
void tick(const target_board::BoardInputEvent* event);
|
|
void showDisplayProbe();
|
|
|
|
} // namespace trailmate::apps::nrf52_node::ui_runtime
|