mirror of
https://github.com/meshtastic/firmware.git
synced 2026-01-09 11:27:29 +00:00
16 lines
184 B
C
16 lines
184 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <Arduino.h>
|
||
|
|
#include <functional>
|
||
|
|
|
||
|
|
void initWebServer();
|
||
|
|
|
||
|
|
void handleNotFound();
|
||
|
|
|
||
|
|
void handleWebResponse();
|
||
|
|
|
||
|
|
void handleJSONChatHistory();
|
||
|
|
|
||
|
|
void notifyWebUI();
|
||
|
|
|