tinance2-doorbot/include/main.h
Matthew Frost 95faf3f3f1 settings
2023-06-13 20:01:13 +02:00

27 lines
No EOL
505 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 "web_server.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