aboutsummaryrefslogtreecommitdiff
path: root/include/ble/misc.h
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2018-11-19 23:13:50 +0100
committerTrygve Laugstøl <trygvis@inamo.no>2018-11-19 23:13:50 +0100
commite8aa2eadf309fbc0c0e1418c6bee482e505fa09b (patch)
treee93292292834b8d8959301cd8d02b27090e7e0ca /include/ble/misc.h
parentd6f16958eaa966332b911eb9257b8524c2efd772 (diff)
downloadble-toys-e8aa2eadf309fbc0c0e1418c6bee482e505fa09b.tar.gz
ble-toys-e8aa2eadf309fbc0c0e1418c6bee482e505fa09b.tar.bz2
ble-toys-e8aa2eadf309fbc0c0e1418c6bee482e505fa09b.tar.xz
ble-toys-e8aa2eadf309fbc0c0e1418c6bee482e505fa09b.zip
ble-read-characteristic: working READ mode, starting on NOTIFY.
Diffstat (limited to 'include/ble/misc.h')
-rw-r--r--include/ble/misc.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/ble/misc.h b/include/ble/misc.h
index 4ba3309..2508d8e 100644
--- a/include/ble/misc.h
+++ b/include/ble/misc.h
@@ -1,6 +1,6 @@
#pragma once
-#include <experimental/optional>
+#include <optional>
#include <cstring>
#include <cctype>
@@ -10,7 +10,7 @@ namespace trygvis {
namespace bluetooth {
template<typename T>
-using o = std::experimental::optional<T>;
+using o = std::optional<T>;
class BluetoothAdapter;
class BluetoothDevice;
@@ -86,6 +86,8 @@ const ShortUuid PRIMARY_SERVICE{0x2800};
const ShortUuid SECONDARY_SERVICE{0x2801};
const ShortUuid CHARACTERISTIC{0x2803};
+const ShortUuid CLIENT_CHARACTERISTIC_CONFIG{0x2902};
+
const ShortUuid TemperatureMeasurement{0x2A1C};
}