Initial commit: project docs and ignore rules
This commit is contained in:
15
ESP32-C5-Toolkit/main/web_server.h
Normal file
15
ESP32-C5-Toolkit/main/web_server.h
Normal file
@@ -0,0 +1,15 @@
|
||||
#ifndef WEB_SERVER_H
|
||||
#define WEB_SERVER_H
|
||||
|
||||
#include "esp_http_server.h"
|
||||
|
||||
// Initialize the web server
|
||||
void init_web_server(void);
|
||||
|
||||
// Start the HTTP server
|
||||
httpd_handle_t start_webserver(void);
|
||||
|
||||
// Stop the HTTP server
|
||||
void stop_webserver(void);
|
||||
|
||||
#endif /* WEB_SERVER_H */
|
||||
Reference in New Issue
Block a user