Add HTTP server
This commit is contained in:
parent
6b2d89340a
commit
8bd9a9b1d0
7 changed files with 206 additions and 8 deletions
19
main/server.h
Normal file
19
main/server.h
Normal 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_
|
||||
Loading…
Add table
Add a link
Reference in a new issue