mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-26 22:22:16 +03:00
11 lines
305 B
C
11 lines
305 B
C
#pragma once
|
|
#include "Global.h"
|
|
#ifdef ASYNC_WEB_SERVER
|
|
extern AsyncWebSocket ws;
|
|
extern AsyncEventSource events;
|
|
|
|
void asyncWebServerInit();
|
|
void asyncWebSocketsInit();
|
|
void onWsEvent(AsyncWebSocket *server, AsyncWebSocketClient *client, AwsEventType type, void *arg, uint8_t *data, size_t len);
|
|
#endif
|