simplersble 0.10.4-dev13

The all-in-one Bluetooth library that makes it easy to add wireless connectivity to your projects.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <simpleble_c/utils.h>

#include <simpleble_c/types.h>

simpleble_os_t simpleble_get_operating_system() {
#ifdef _WIN32
    return SIMPLEBLE_OS_WINDOWS;
#elif __APPLE__
    return SIMPLEBLE_OS_MACOS;
#elif __linux__
    return SIMPLEBLE_OS_LINUX;
#endif
}

const char* simpleble_get_version() { return SIMPLEBLE_VERSION; }