restructured Folders and Files

This commit is contained in:
2023-04-12 23:05:46 +02:00
parent 3a0e1a931d
commit 427e5e5d16
8 changed files with 0 additions and 0 deletions

21
Software/include/webui.h Normal file
View File

@@ -0,0 +1,21 @@
#ifndef _WEBUI_H_
#define _WEBUI_H_
#include <Arduino.h>
#include <FS.h>
#include <LittleFS.h>
#include <ESPAsyncTCP.h>
#include <ESPAsyncWebServer.h>
#include <Updater.h>
#include <ESP8266mDNS.h>
#include <AsyncJson.h>
#include <ArduinoJson.h>
#include "config.h"
#include "globals.h"
#include "dtc.h"
#include "common.h"
void initWebUI();
#endif