My Project
 All Classes Functions Variables Pages
BLE2902.h
1 /*
2  * BLE2902.h
3  *
4  * Created on: Jun 25, 2017
5  * Author: kolban
6  */
7 
8 #ifndef COMPONENTS_CPP_UTILS_BLE2902_H_
9 #define COMPONENTS_CPP_UTILS_BLE2902_H_
10 #include "sdkconfig.h"
11 #if defined(CONFIG_BT_ENABLED)
12 
13 #include "BLEDescriptor.h"
14 
23 class BLE2902: public BLEDescriptor {
24 public:
25  BLE2902();
26  bool getNotifications();
27  bool getIndications();
28  void setNotifications(bool flag);
29  void setIndications(bool flag);
30 
31 }; // BLE2902
32 
33 #endif /* CONFIG_BT_ENABLED */
34 #endif /* COMPONENTS_CPP_UTILS_BLE2902_H_ */