From 9042b87f32bcabcc671e393376d3fb96ad858caa Mon Sep 17 00:00:00 2001 From: Trygve Laugstøl Date: Sun, 21 Jun 2015 16:58:18 +0200 Subject: ble-scan: o New tool to scan for devices. Requires root on linux :( Linux is also touchy if the program dies. BluetoothAdapter: o Adding getMac(). --- include/ble/Bluetooth.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/ble/Bluetooth.h b/include/ble/Bluetooth.h index 97e7cfe..6a974d5 100644 --- a/include/ble/Bluetooth.h +++ b/include/ble/Bluetooth.h @@ -157,11 +157,13 @@ public: class BluetoothAdapter { public: + virtual Mac const &getMac() = 0; + virtual void startScan() = 0; virtual void stopScan() = 0; - virtual void runScan(void (callback)(BluetoothDevice &device)) = 0; + virtual void runScan(std::function) = 0; virtual BluetoothDevice &getDevice(Mac &mac) = 0; @@ -243,7 +245,7 @@ private: AttributeData(uint16_t handle, ByteBuffer value); }; -BluetoothAdapter &getAdapter(int hciDevice); +shared_ptr getAdapter(int hciDevice); void shutdown(); -- cgit v1.2.3