added debugging

Fork of BLE_nRF8001 by RedBearLab

Committer:
RedBearLab
Date:
Fri Oct 17 22:40:32 2014 +0800
Revision:
0:075ea2812998
BLE_nRF8001 library first commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
RedBearLab 0:075ea2812998 1 #ifndef _BLE_SERVICE_H_
RedBearLab 0:075ea2812998 2 #define _BLE_SERVICE_H_
RedBearLab 0:075ea2812998 3
RedBearLab 0:075ea2812998 4 #include "BLEAttribute.h"
RedBearLab 0:075ea2812998 5
RedBearLab 0:075ea2812998 6 class BLEService : public BLEAttribute
RedBearLab 0:075ea2812998 7 {
RedBearLab 0:075ea2812998 8 public:
RedBearLab 0:075ea2812998 9 BLEService(const char* uuid);
RedBearLab 0:075ea2812998 10 };
RedBearLab 0:075ea2812998 11
RedBearLab 0:075ea2812998 12 #endif