Files
firmware/src/meshwifi/meshhttp.h

36 lines
504 B
C
Raw Normal View History

#pragma once
2020-10-11 22:13:14 -07:00
#include "PhoneAPI.h"
#include <Arduino.h>
#include <functional>
void initWebServer();
void createSSLCert();
void handleNotFound();
void handleWebResponse();
void handleJSONChatHistory();
void notifyWebUI();
2020-09-18 15:33:03 -07:00
void handleHotspot();
2020-09-22 21:01:31 -07:00
void handleStyleCSS();
2020-09-23 19:04:12 -07:00
void handleRoot();
void handleScriptsScriptJS();
void handleJSONChatHistoryDummy();
2020-10-16 19:38:59 -07:00
class HttpAPI : public PhoneAPI
{
2020-10-11 22:13:14 -07:00
public:
// Nothing here yet
2020-10-11 22:13:14 -07:00
private:
// Nothing here yet
2020-10-11 22:13:14 -07:00
protected:
// Nothing here yet
};