Initial commit

This commit is contained in:
2026-02-20 20:39:17 +01:00
commit e8b56b4142
12 changed files with 591 additions and 0 deletions

20
ble_server.h Normal file
View File

@@ -0,0 +1,20 @@
#ifndef BLE_SERVER_H
#define BLE_SERVER_H
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
void start_server(void);
void stop_server(void);
void send_message(const char* message);
#ifdef __cplusplus
}
#endif
#endif // BLE_SERVER_H