aboutsummaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2018-11-17 22:38:32 +0100
committerTrygve Laugstøl <trygvis@inamo.no>2018-11-17 22:38:32 +0100
commit52450ed3034b0ba058ea2c9f9baa2d5f78df6a94 (patch)
tree97fe35d5d7fe6fe354b2effe8c0ef4836787eb83 /apps
parenta167d6e68e634a70af442cd86e43fd9223b1431c (diff)
downloadble-toys-52450ed3034b0ba058ea2c9f9baa2d5f78df6a94.tar.gz
ble-toys-52450ed3034b0ba058ea2c9f9baa2d5f78df6a94.tar.bz2
ble-toys-52450ed3034b0ba058ea2c9f9baa2d5f78df6a94.tar.xz
ble-toys-52450ed3034b0ba058ea2c9f9baa2d5f78df6a94.zip
apps/ble-bts:
o Adding start of health termometer service tool. apps/ble-read-characteristic: o Sart of new tool. apps/ble-inspect-device o Make adapter configurable. other: o UUID fixes and tests.
Diffstat (limited to 'apps')
-rw-r--r--apps/CMakeLists.txt3
-rw-r--r--apps/ble-bts.cpp14
-rw-r--r--apps/ble-inspect-device.cpp10
-rw-r--r--apps/ble-read-characteristic.cpp94
4 files changed, 111 insertions, 10 deletions
diff --git a/apps/CMakeLists.txt b/apps/CMakeLists.txt
index 6491ef1..3b1235c 100644
--- a/apps/CMakeLists.txt
+++ b/apps/CMakeLists.txt
@@ -98,9 +98,10 @@ function(add_app)
install(TARGETS ${app} RUNTIME DESTINATION bin)
endfunction()
+add_app(NAME ble-bts)
add_app(NAME ble-inspect-device)
+add_app(NAME ble-read-characteristic)
add_app(NAME ble-scan)
-add_app(NAME ble-bts)
add_app(NAME sample-add-timestamp)
add_app(NAME sample-convert)
add_app(NAME sample-select)
diff --git a/apps/ble-bts.cpp b/apps/ble-bts.cpp
index 82d6d43..3f79f2c 100644
--- a/apps/ble-bts.cpp
+++ b/apps/ble-bts.cpp
@@ -59,9 +59,11 @@ public:
auto gatt = device->connectGatt();
cout << "Connected" << endl;
+ gatt->discoverServices();
+
auto bts = gatt->findService(uuids::HealthTermometerService);
if (!bts) {
- cout << "Device does not implement Health thermometer service" << endl;
+ cout << "Device does not implement Health thermometer service (" << uuids::HealthTermometerService.str() << ")" << endl;
return EXIT_FAILURE;
}
@@ -72,7 +74,7 @@ public:
return EXIT_FAILURE;
}
- with_connection(gatt, tmc.value());
+ with_characteristic(gatt, tmc.value());
return EXIT_SUCCESS;
} catch (std::runtime_error &ex) {
@@ -84,7 +86,7 @@ public:
}
}
- void with_connection(BluetoothGattPtr gatt, BluetoothGattCharacteristicPtr tmc) {
+ void with_characteristic(const BluetoothGattPtr &gatt, const BluetoothGattCharacteristicPtr &tmc) {
auto svc = tmc->getService();
cout << "Reading temp value" << endl;
@@ -93,13 +95,13 @@ public:
cout << "bytes " << buf.getSize() << endl;
- for (int i = 0; i < buf.getSize(); i++) {
+ for (size_t i = 0; i < buf.getSize(); i++) {
cout << "byte " << i << " = " << hex << buf.peek8(i) << endl;
}
}
};
-}
-}
+} // namespace apps
+} // namespace trygvis
int main(int argc, const char *argv[]) {
using namespace trygvis::apps;
diff --git a/apps/ble-inspect-device.cpp b/apps/ble-inspect-device.cpp
index 883faed..a06d86a 100644
--- a/apps/ble-inspect-device.cpp
+++ b/apps/ble-inspect-device.cpp
@@ -18,11 +18,15 @@ public:
~ble_inspect_device() override = default;
+ string adapter_name;
+
void add_options(po::options_description_easy_init &options) override {
+ auto adapter_value = po::value<>(&adapter_name)->default_value("0");
+ options("adapter", adapter_value, "Which adapter to use.");
options("device", po::value<string>()->required(), "The MAC of the device to inspect");
}
- void scan_callback(const shared_ptr<BluetoothDevice> &device) {
+ void with_device(const shared_ptr<BluetoothDevice> &device) {
cout << "Inspecting device: " << device->getMac().str() << endl;
auto gatt = device->connectGatt();
@@ -54,11 +58,11 @@ public:
try {
Mac mac = Mac::parseMac(mac_str);
- auto adapter = bluetoothSystem.getAdapter("0");
+ auto adapter = bluetoothSystem.getAdapter(adapter_name);
auto device = adapter->getDevice(mac);
- scan_callback(device);
+ with_device(device);
return EXIT_SUCCESS;
} catch (std::runtime_error &ex) {
diff --git a/apps/ble-read-characteristic.cpp b/apps/ble-read-characteristic.cpp
new file mode 100644
index 0000000..0aa5fdc
--- /dev/null
+++ b/apps/ble-read-characteristic.cpp
@@ -0,0 +1,94 @@
+#include <stdexcept>
+#include <iostream>
+#include <vector>
+#include <boost/uuid/uuid_io.hpp>
+#include "ble/Bluetooth.h"
+#include "apps.h"
+
+namespace trygvis {
+namespace apps {
+
+using namespace std;
+using namespace trygvis::bluetooth;
+using namespace trygvis::apps;
+
+class ble_inspect_device : public app {
+public:
+ ble_inspect_device() : app("ble-inspect-device") {}
+
+ ~ble_inspect_device() override = default;
+
+ string adapter_name;
+
+ void add_options(po::options_description_easy_init &options) override {
+ auto adapter_value = po::value<>(&adapter_name)->default_value("0");
+ options("adapter", adapter_value, "Which adapter to use.");
+ options("device", po::value<string>()->required(), "The MAC of the device to inspect");
+ options("service", po::value<string>()->required(), "The UUID of the service to read");
+ options("characteristic", po::value<string>()->required(), "The UUID of the characteristic to read");
+ }
+
+ int with_device(const shared_ptr<BluetoothDevice> &device, const Uuid &service_uuid, const Uuid &characteristic_uuid) {
+ cout << "Inspecting device: " << device->getMac().str() << endl;
+
+ auto gatt = device->connectGatt();
+ cout << "Connected, discovering services" << endl;
+
+ gatt->discoverServices();
+
+ auto serviceO = gatt->findService(service_uuid);
+ if (!serviceO) {
+ cout << "Device does not requested service (" << service_uuid.str() << ")" << endl;
+ return EXIT_FAILURE;
+ }
+
+ auto service = serviceO->get();
+ auto characteristicO = service->findCharacteristic(characteristic_uuid);
+
+ if (!characteristicO) {
+ cout << "The device does not have requested characteristic (" << characteristic_uuid << ")" << endl;
+ return EXIT_FAILURE;
+ }
+
+ auto characteristic = characteristicO.value();
+
+ gatt->readValue(characteristic);
+
+ return EXIT_SUCCESS;
+ }
+
+ int main(app_execution &execution) override {
+ string mac_str = execution.vm["device"].as<string>();
+ string service_str = execution.vm["service"].as<string>();
+ string characteristic_str = execution.vm["characteristic"].as<string>();
+
+ auto service_uuid = Uuid::fromString(service_str);
+ auto characteristic_uuid = Uuid::fromString(characteristic_str);
+
+ BluetoothSystem bluetoothSystem;
+
+ try {
+ Mac mac = Mac::parseMac(mac_str);
+
+ auto adapter = bluetoothSystem.getAdapter(adapter_name);
+
+ auto device = adapter->getDevice(mac);
+
+ return with_device(device, service_uuid.value(), characteristic_uuid.value());
+ } catch (std::runtime_error &ex) {
+ cout << "std::runtime_error: " << ex.what() << endl;
+ return EXIT_FAILURE;
+ } catch (std::exception &ex) {
+ cout << "std::exception: " << ex.what() << endl;
+ return EXIT_FAILURE;
+ }
+ }
+};
+}
+}
+
+int main(int argc, const char *argv[]) {
+ using namespace trygvis::apps;
+
+ return real_main(new ble_inspect_device(), argc, argv);
+}