mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-07 20:16:55 +03:00
10 lines
210 B
C++
10 lines
210 B
C++
#ifndef WEBSOCKET_H
|
|
#define WEBSOCKET_H
|
|
|
|
#include <esp_http_server.h>
|
|
|
|
esp_err_t start_websocket_server(httpd_handle_t server);
|
|
|
|
esp_err_t schedule_websocket_message(std::string message);
|
|
|
|
#endif // WEBSOCKET_H
|