aboutsummaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp44
1 files changed, 44 insertions, 0 deletions
diff --git a/main.cpp b/main.cpp
new file mode 100644
index 0000000..ab1a9b0
--- /dev/null
+++ b/main.cpp
@@ -0,0 +1,44 @@
+#include <exception>
+#include <iostream>
+#include "Bluetooth.h"
+
+using namespace std;
+using namespace trygvis;
+
+static Mac *targetMac;
+
+void scan_callback(BluetoothDevice &device) {
+ device.adapter().stopScan();
+
+ if (device.mac() == *targetMac) {
+ cout << "found device: " << device.mac().str() << ", but not the one we want" << endl;
+ return;
+ }
+
+ cout << "found device: " << device.mac().str() << endl;
+
+ device.connect();
+ device.disconnect();
+}
+
+int main(int argc, char *argv[]) {
+ if (argc != 2) {
+ cerr << "usage: " << argv[0] << " [mac]" << endl;
+ return EXIT_FAILURE;
+ }
+
+ targetMac = Mac::parseMac(argv[1]);
+
+ try {
+ BluetoothAdapter *adapter = trygvis::getDevice(0);
+
+ adapter->runScan(scan_callback);
+
+ delete adapter;
+
+ return EXIT_SUCCESS;
+ } catch (BluetoothException ex) {
+ W << "Excpetion: " << ex.what();
+ return EXIT_FAILURE;
+ }
+}