tinance2-doorbot/include/main.h
Matthew Frost 70e0ebed53 move stuff
2023-06-13 22:18:44 +02:00

34 lines
No EOL
675 B
C

#ifndef MAIN_H
#define MAIN_H
#include "hardware.h"
#include <Arduino.h>
#include "secrets.h"
#include "settings.h"
#ifdef WIFI
#include "WiFi.h"
#endif
#ifdef WEB_SERVER
#include <AsyncTCP.h>
#include "ESPAsyncWebServer.h"
#include "SPIFFS.h"
#include <ArduinoJson.h>
#include <AsyncJson.h>
#ifdef WEB_SERIAL_DEBUG
#include <WebSerial.h>
#endif
#ifdef WEB_OTA_UPDATE
#include <AsyncElegantOTA.h>
#endif
#include "mainwebserver.h"
#endif
#ifdef BUZZER
#include "buzzer_ctl.h"
#endif
#endif