Added the webserver and the wifi handling

This commit is contained in:
2026-03-24 15:03:02 +01:00
parent 8bebe5228b
commit 67f2baabbb
14 changed files with 543 additions and 39 deletions

17
src/webserver.h Normal file
View File

@@ -0,0 +1,17 @@
#ifndef WEBSERVER_H
#define WEBSERVER_H
#ifdef __cplusplus
extern "C" {
#endif
extern char saved_ssid[33];
extern char saved_password[65];
void webserver_init(void);
#ifdef __cplusplus
}
#endif
#endif