summaryrefslogtreecommitdiff
path: root/src/BLERemoteDescriptor.h
diff options
context:
space:
mode:
authorNeil Kolban <kolban1@kolban.com>2018-01-17 18:16:31 -0600
committerNeil Kolban <kolban1@kolban.com>2018-01-17 18:16:31 -0600
commit3f5005c383540d07dd16ac044c78d7be28d4aa8e (patch)
treec5236ddbe5c8dd99ad7083dd498110152ad0e9be /src/BLERemoteDescriptor.h
parentRemoval of unneeded file (diff)
downloadthermostat-3f5005c383540d07dd16ac044c78d7be28d4aa8e.tar.gz
thermostat-3f5005c383540d07dd16ac044c78d7be28d4aa8e.tar.bz2
thermostat-3f5005c383540d07dd16ac044c78d7be28d4aa8e.zip
0.4.8
Diffstat (limited to 'src/BLERemoteDescriptor.h')
-rw-r--r--src/BLERemoteDescriptor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/BLERemoteDescriptor.h b/src/BLERemoteDescriptor.h
index c2cf383..7bbc48f 100644
--- a/src/BLERemoteDescriptor.h
+++ b/src/BLERemoteDescriptor.h
@@ -24,13 +24,13 @@ class BLERemoteCharacteristic;
class BLERemoteDescriptor {
public:
uint16_t getHandle();
+ BLERemoteCharacteristic* getRemoteCharacteristic();
BLEUUID getUUID();
std::string readValue(void);
uint8_t readUInt8(void);
uint16_t readUInt16(void);
uint32_t readUInt32(void);
std::string toString(void);
- //void registerForNotify(void (*notifyCallback)(BLERemoteCharacteristic *pBLERemoteCharacteristic, uint8_t *pData, size_t length, bool isNotify));
void writeValue(uint8_t* data, size_t length, bool response = false);
void writeValue(std::string newValue, bool response = false);
void writeValue(uint8_t newValue, bool response = false);