mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-04 19:59:55 +00:00
17 lines
202 B
C
17 lines
202 B
C
|
#pragma once
|
||
|
|
||
|
#include <Arduino.h>
|
||
|
#include <functional>
|
||
|
#include <WiFi.h>
|
||
|
|
||
|
void initWebServer();
|
||
|
|
||
|
void handleNotFound();
|
||
|
|
||
|
void handleWebResponse();
|
||
|
|
||
|
void handleJSONChatHistory();
|
||
|
|
||
|
void notifyWebUI();
|
||
|
|