#ifndef WEB_SERVER_H_ #define WEB_SERVER_H_ #if defined(ESP8266) # include #elif defined(ESP32) # include #endif #include "src/lib/AutoConnect/AutoConnect.h" #include "config.h" #include "util.h" #include "wifi_util.h" #include "co2_sensor.h" #include "sensor_console.h" #ifdef AMPEL_CSV # include "csv_writer.h" #endif #ifdef AMPEL_MQTT # include "mqtt.h" #endif #ifdef AMPEL_LORAWAN # include "lorawan.h" #endif namespace web_server { void initialize(); void update(); } #endif