blob: 8f5355bcb399a53a343103c6c9910ae903868582 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef PINECILV2_BLE_H_
#define PINECILV2_BLE_H_
/*
* BLE Interface for the Pinecil V2
*
* Exposes:
* - Live Measurements
* - Device Settings Names
* - Device Settings Values
*/
#ifdef __cplusplus
extern "C" {
#endif
// Spawns the BLE stack tasks and makes the device available to be connected to via BLE.
void ble_stack_start(void);
#ifdef __cplusplus
};
#endif
#endif
|