#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