create separate folder for arduino and espidf
This commit is contained in:
parent
bc3989f111
commit
a5e0f81930
22 changed files with 0 additions and 0 deletions
18
SourceCode/esp-idf/include/network/theWebServer.h
Normal file
18
SourceCode/esp-idf/include/network/theWebServer.h
Normal file
|
@ -0,0 +1,18 @@
|
|||
#ifndef WEBSERVER_H
|
||||
#define WEBSERVER_H
|
||||
|
||||
#include "esp_system.h"
|
||||
#include "esp_event.h"
|
||||
#include "esp_http_server.h"
|
||||
#include "esp_log.h"
|
||||
#include "cJSON.h"
|
||||
#include "stdlib.h"
|
||||
|
||||
#include "../common/theGPIO.h"
|
||||
#include "theFirewall.h"
|
||||
|
||||
void custom_json_response(httpd_req_t *req, char *message, char *type);
|
||||
void custom_request_middleware(httpd_req_t *req);
|
||||
void setup_web_server(char *serverIp);
|
||||
|
||||
#endif
|
Reference in a new issue