create separate folder for arduino and espidf

This commit is contained in:
Florian Hoss 2022-04-10 13:26:52 +02:00
parent bc3989f111
commit a5e0f81930
22 changed files with 0 additions and 0 deletions

View 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