Refactoring to break out HTTP from WiFi

This commit is contained in:
Jm Casler
2020-09-13 16:58:36 -07:00
parent d859700497
commit e508306395
7 changed files with 127 additions and 95 deletions

16
src/meshwifi/meshhttp.h Normal file
View File

@@ -0,0 +1,16 @@
#pragma once
#include <Arduino.h>
#include <functional>
#include <WiFi.h>
void initWebServer();
void handleNotFound();
void handleWebResponse();
void handleJSONChatHistory();
void notifyWebUI();