2023-06-12 17:17:28 +00:00
|
|
|
#ifndef MAIN_H
|
|
|
|
#define MAIN_H
|
|
|
|
|
|
|
|
#include "hardware.h"
|
|
|
|
#include <Arduino.h>
|
|
|
|
#include "secrets.h"
|
2023-06-13 18:01:13 +00:00
|
|
|
#include "settings.h"
|
|
|
|
|
2023-06-12 17:17:28 +00:00
|
|
|
#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
|