tinance2-doorbot/include/main.h
2023-06-13 12:57:40 +02:00

26 lines
No EOL
475 B
C

#ifndef MAIN_H
#define MAIN_H
#include "hardware.h"
#include <Arduino.h>
#include "secrets.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