- telemetry protocol builder - server-side message handling - database migrations - telemetry persistence
15 lines
200 B
C
15 lines
200 B
C
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void ws_init(const char* uri);
|
|
void ws_go();
|
|
void ws_start();
|
|
bool ws_is_connected();
|
|
void ws_send(const char* data);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif |