summaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qmlmanager.cpp
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2017-05-29 12:25:21 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2017-05-29 12:25:21 -0700
commita5685625035307e644a5454488f1818ac61dea2d (patch)
treee1105e6d231c214ce9324463a1fa1931df51dc85 /mobile-widgets/qmlmanager.cpp
parentb9ac6334c79f1272a369e325386cfaf0b0ec9d7c (diff)
downloadsubsurface-a5685625035307e644a5454488f1818ac61dea2d.tar.gz
QML UI: try to match BT names to known dive computers
So far this just adds data to the log. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qmlmanager.cpp')
-rw-r--r--mobile-widgets/qmlmanager.cpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/mobile-widgets/qmlmanager.cpp b/mobile-widgets/qmlmanager.cpp
index f10564a94..510866137 100644
--- a/mobile-widgets/qmlmanager.cpp
+++ b/mobile-widgets/qmlmanager.cpp
@@ -206,8 +206,14 @@ void QMLManager::mergeLocalRepo()
#if BT_SUPPORT
void QMLManager::btDeviceDiscovered(const QBluetoothDeviceInfo &device)
{
- QString newDevice = "Found new device " + device.name() + " (" + device.address().toString() + ")";
- appendTextToLog(newDevice);
+ QString newDevice = device.name();
+ appendTextToLog("Found new device " + newDevice + " (" + device.address().toString() + ")");
+ QString vendor, product;
+ foreach (vendor, productList.keys()) {
+ if (productList[vendor].contains(newDevice)) {
+ appendTextToLog("this could be a " + vendor + " " + newDevice);
+ }
+ }
}
#endif