tinance2-doorbot/include/main.h
2023-06-13 20:33:44 +02:00

37 lines
No EOL
719 B
C

#ifndef MAIN_H
#define MAIN_H
#include "hardware.h"
#include <Arduino.h>
#include "secrets.h"
#include "settings.h"
#ifdef LOCAL_ACL
#include "ACL.h"
ACL acl = {
};
#endif
#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
#endif
#ifdef BUZZER
#include "buzzer_ctl.h"
#endif
#endif