49 lines
No EOL
984 B
C
49 lines
No EOL
984 B
C
#ifndef MAIN_H
|
|
#define MAIN_H
|
|
|
|
#include "hardware.h"
|
|
#include <Arduino.h>
|
|
#include "secrets.h"
|
|
#include "settings.h"
|
|
#include <HTTPClient.h>
|
|
#include <ArduinoJson.h>
|
|
|
|
#ifdef WIFI
|
|
#include "WiFi.h"
|
|
#ifdef WEBHOOKS
|
|
#include "webhooks.h"
|
|
#endif
|
|
#endif
|
|
|
|
#ifdef LOCAL_ACL
|
|
#include "acl.h"
|
|
#endif
|
|
|
|
#ifdef TTL_READER
|
|
#include "ttl_reader_utils.h"
|
|
#endif
|
|
|
|
#ifdef TINANCE2_BACKEND
|
|
#include "tinance2.h"
|
|
#endif
|
|
|
|
#ifdef WEB_SERVER
|
|
#include <AsyncTCP.h>
|
|
#include "ESPAsyncWebServer.h"
|
|
#include "SPIFFS.h"
|
|
#include <AsyncJson.h>
|
|
#ifdef WEB_OTA_UPDATE
|
|
#include <ElegantOTA.h>
|
|
#endif
|
|
|
|
#include "mainwebserver.h"
|
|
#ifdef LOCAL_ACL_API
|
|
#include "aclwebserver.h"
|
|
#endif
|
|
#endif
|
|
|
|
#ifdef BUZZER
|
|
#include "buzzer_ctl.h"
|
|
#endif
|
|
|
|
#endif |