Add HTTP server

This commit is contained in:
arne 2025-10-05 10:27:36 +02:00
commit 8bd9a9b1d0
7 changed files with 206 additions and 8 deletions

19
main/server.h Normal file
View file

@ -0,0 +1,19 @@
#ifndef SERVER_H_
#define SERVER_H_
#include <stdio.h>
#include <string.h>
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "esp_event.h"
#include "esp_log.h"
#include "nvs_flash.h"
#include "esp_wifi.h"
#include "esp_netif.h"
#include "esp_http_server.h"
// #include "settings.h"
httpd_handle_t get_server(void);
#endif // SERVER_H_