tinance2-doorbot/include/main.h

26 lines
475 B
C
Raw Normal View History

2023-06-12 17:17:28 +00:00
#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
2023-06-13 10:57:40 +00:00
#include <AsyncElegantOTA.h>
2023-06-12 17:17:28 +00:00
#endif
#endif
#ifdef BUZZER
#include "buzzer_ctl.h"
#endif
#endif