Fabian Schlenz
291a3be623
All checks were successful
continuous-integration/drone/push Build is passing
17 lines
269 B
C
17 lines
269 B
C
#pragma once
|
|
#include "config.h"
|
|
|
|
#ifdef HTTP_SERVER_ENABLE
|
|
|
|
#include "my_wifi.h"
|
|
|
|
#if defined ( ESP8266 )
|
|
extern ESP8266WebServer http_server;
|
|
#elif defined ( ESP32 )
|
|
extern ESP32WebServer http_server;
|
|
#endif
|
|
|
|
void http_server_setup();
|
|
void http_server_loop();
|
|
#endif
|