-
Notifications
You must be signed in to change notification settings - Fork 7.6k
/
Copy pathBLEValue.h
42 lines (38 loc) · 896 Bytes
/
BLEValue.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
* BLEValue.h
*
* Created on: Jul 17, 2017
* Author: kolban
*/
#ifndef COMPONENTS_CPP_UTILS_BLEVALUE_H_
#define COMPONENTS_CPP_UTILS_BLEVALUE_H_
#include "soc/soc_caps.h"
#include "WString.h"
#if SOC_BLE_SUPPORTED
#include "sdkconfig.h"
#if defined(CONFIG_BLUEDROID_ENABLED)
/**
* @brief The model of a %BLE value.
*/
class BLEValue {
public:
BLEValue();
void addPart(String part);
void addPart(uint8_t *pData, size_t length);
void cancel();
void commit();
uint8_t *getData();
size_t getLength();
uint16_t getReadOffset();
String getValue();
void setReadOffset(uint16_t readOffset);
void setValue(String value);
void setValue(uint8_t *pData, size_t length);
private:
String m_accumulation;
uint16_t m_readOffset;
String m_value;
};
#endif /* CONFIG_BLUEDROID_ENABLED */
#endif /* SOC_BLE_SUPPORTED */
#endif /* COMPONENTS_CPP_UTILS_BLEVALUE_H_ */