mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-05 04:10:07 +00:00
36 lines
504 B
C++
36 lines
504 B
C++
#pragma once
|
|
|
|
#include "PhoneAPI.h"
|
|
#include <Arduino.h>
|
|
#include <functional>
|
|
|
|
void initWebServer();
|
|
void createSSLCert();
|
|
|
|
void handleNotFound();
|
|
|
|
void handleWebResponse();
|
|
|
|
void handleJSONChatHistory();
|
|
|
|
void notifyWebUI();
|
|
|
|
void handleHotspot();
|
|
|
|
void handleStyleCSS();
|
|
void handleRoot();
|
|
void handleScriptsScriptJS();
|
|
void handleJSONChatHistoryDummy();
|
|
|
|
class HttpAPI : public PhoneAPI
|
|
{
|
|
|
|
public:
|
|
// Nothing here yet
|
|
|
|
private:
|
|
// Nothing here yet
|
|
|
|
protected:
|
|
// Nothing here yet
|
|
}; |