From 5cb96fd96f51e949c5311db3080c58d851b7c2e1 Mon Sep 17 00:00:00 2001 From: Trygve Laugstøl Date: Sun, 8 Feb 2015 21:29:47 +0100 Subject: o Initial import of Linux code for talking to Bluetooth devices. --- main.cpp | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 main.cpp (limited to 'main.cpp') 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 +#include +#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; + } +} -- cgit v1.2.3