added websocket-driven notification-overlay

This commit is contained in:
2024-01-15 22:56:08 +01:00
parent cebf0db60c
commit d994fd25a0
5 changed files with 95 additions and 24 deletions

View File

@@ -31,10 +31,19 @@
#include "debugger.h"
#include "struct2json.h"
typedef enum
{
info,
success,
warning,
error
} NotificationType_t;
void initWebUI();
void Webserver_Process();
void Webserver_Shutdown();
void Websocket_PushLiveDebug(String Message);
void Websocket_PushNotification(String Message, NotificationType_t type);
#endif // _WEBUI_H_