diff options
Diffstat (limited to 'apps/sm-get-value.cpp')
-rw-r--r-- | apps/sm-get-value.cpp | 92 |
1 files changed, 42 insertions, 50 deletions
diff --git a/apps/sm-get-value.cpp b/apps/sm-get-value.cpp index 232c166..6d7c578 100644 --- a/apps/sm-get-value.cpp +++ b/apps/sm-get-value.cpp @@ -1,48 +1,30 @@ -#include <exception> #include <iostream> -#include <vector> #include <boost/uuid/uuid_io.hpp> #include <boost/optional.hpp> #include "Bluetooth.h" -#include "soil-moisture.h" using namespace std; using namespace trygvis::bluetooth; -Mac *targetMac; +typedef boost::uuids::uuid uuid_t; -void scan_callback(BluetoothDevice &device) { - device.adapter().stopScan(); +#define BLUETOOTH_UUID_INITIALIZER \ + { \ + 0x00, 0x00, 0x00, 0x00, \ + 0x00, 0x00, \ + 0x10, 0x00, \ + 0x80, 0x00, \ + 0x00, 0x80, 0x5f, 0x9b, 0x34, 0xfb \ + }; - if (device.mac() != *targetMac) { - cout << "found device: " << device.mac().str() << ", but not the one we want " << targetMac->str() << endl; - return; - } - - cout << "Connecting to device: " << device.mac().str() << endl; - - device.connect(); - - device.discoverServices(); - - vector<BluetoothGattService *> services = device.getServices(); - cout << "Device has " << services.size() << " services" << endl; - - for (auto &s: services) { - const vector<BluetoothGattCharacteristic *> characteristics = s->getCharacteristics(); +uuid_t trygvis_io_base_uuid = { + 0x32, 0xd0, 0x00, 0x00, + 0x03, 0x5d, + 0x59, 0xc5, + 0x70, 0xd3, + 0xbc, 0x8e, 0x4a, 0x1f, 0xd8, 0x3f}; - cout << "Service: UUID: " << s->getUuid() << ", has " << characteristics.size() << " characteristics" << endl; - - for (auto &c: characteristics) { - cout << "Characteristic: UUID: " << c->getUuid() << ", properties: " << (int) c->getProperties() << endl; - } - } - - boost::uuids::uuid soil_moisture_service; - boost::optional<BluetoothGattService*> service = device.findService(soil_moisture_service); - - device.disconnect(); -} +uuid_t soil_moisture_service = makeUuid(trygvis_io_base_uuid, 0x00, 0x10); int main(int argc, char *argv[]) { if (argc != 2) { @@ -51,25 +33,35 @@ int main(int argc, char *argv[]) { } int e; -// try { - Mac mac = Mac::parseMac(argv[1]); - targetMac = &mac; - BluetoothAdapter &adapter = getAdapter(0); + BluetoothSystem bluetoothSystem; + try { + Mac mac = Mac::parseMac(argv[1]); + + BluetoothAdapter &adapter = getAdapter(0); + + BluetoothDevice &device = adapter.getDevice(mac); - BluetoothDevice &device = adapter.getDevice(mac); + cout << "Connecting to device: " << device.mac().str() << endl; - scan_callback(device); + device.connect(); - e = EXIT_SUCCESS; -// } catch (std::runtime_error ex) { -// W << "std::runtime_error: " << ex.what(); -// e = EXIT_FAILURE; -// } catch (std::exception ex) { -// W << "std::exception: " << ex.what(); -// e = EXIT_FAILURE; -// } + device.discoverServices(); - shutdown(); - return e; + boost::optional<BluetoothGattService *> service = device.findService(soil_moisture_service); + + if (!service) { + cout << "The device is missing the soil moisture service" << endl; + return EXIT_FAILURE; + } + + device.disconnect(); + return EXIT_SUCCESS; + } catch (std::runtime_error ex) { + W << "std::runtime_error: " << ex.what(); + return EXIT_FAILURE; + } catch (std::exception ex) { + W << "std::exception: " << ex.what(); + return EXIT_FAILURE; + } } |