firmware/src/meshwifi/meshhttp.h

37 lines
503 B
C
Raw Normal View History

#pragma once
#include <Arduino.h>
#include <functional>
#include "PhoneAPI.h"
void initWebServer();
void createSSLCert();
void handleNotFound();
void handleWebResponse();
void handleJSONChatHistory();
void notifyWebUI();
2020-09-18 22:33:03 +00:00
void handleHotspot();
2020-09-23 04:01:31 +00:00
void handleStyleCSS();
2020-09-24 02:04:12 +00:00
void handleRoot();
void handleScriptsScriptJS();
void handleJSONChatHistoryDummy();
class httpAPI : public PhoneAPI
{
public:
// Nothing here yet
private:
// Nothing here yet
protected:
// Nothing here yet
};