2022-04-14 22:48:11 +02:00
|
|
|
#ifndef _WEBUI_H_
|
|
|
|
#define _WEBUI_H_
|
|
|
|
|
|
|
|
#include <Arduino.h>
|
|
|
|
#include <FS.h>
|
|
|
|
#include <LittleFS.h>
|
2023-02-13 22:59:42 +01:00
|
|
|
#include <ESPAsyncTCP.h>
|
2022-04-14 22:48:11 +02:00
|
|
|
#include <ESPAsyncWebServer.h>
|
2023-02-20 13:51:54 +01:00
|
|
|
#include <Updater.h>
|
|
|
|
#include <ESP8266mDNS.h>
|
|
|
|
#include <AsyncJson.h>
|
|
|
|
#include <ArduinoJson.h>
|
|
|
|
|
2022-04-14 22:48:11 +02:00
|
|
|
#include "config.h"
|
|
|
|
#include "globals.h"
|
|
|
|
#include "dtc.h"
|
2023-02-20 13:51:54 +01:00
|
|
|
#include "common.h"
|
2023-04-13 00:35:24 +02:00
|
|
|
#include "debugger.h"
|
2022-04-14 22:48:11 +02:00
|
|
|
|
|
|
|
void initWebUI();
|
2023-04-13 00:35:24 +02:00
|
|
|
void Webserver_Process();
|
|
|
|
void Websocket_PushLiveDebug(String Message);
|
2022-04-14 22:48:11 +02:00
|
|
|
|
|
|
|
#endif
|