Initial commit: project docs and ignore rules

This commit is contained in:
Dr Jones
2026-05-03 23:19:51 -07:00
commit 197724f7a5
55 changed files with 35824 additions and 0 deletions

View 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 */