aboutsummaryrefslogtreecommitdiff
path: root/include/http_server.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/http_server.h')
-rw-r--r--include/http_server.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/http_server.h b/include/http_server.h
new file mode 100644
index 0000000..578b561
--- /dev/null
+++ b/include/http_server.h
@@ -0,0 +1,11 @@
+#pragma once
+#ifndef HTTP_SERVER_H_
+#define HTTP_SERVER_H_
+
+#include <esp_log.h>
+#include <esp_http_server.h>
+#include "ws2812b_writer.h"
+
+httpd_handle_t start_webserver(ws_params_t* params);
+
+#endif /* HTTP_SERVER_H_ */