From 0f350bef98a49949865bf898396dde7f4a58d1ee Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Fri, 21 Dec 2018 14:52:02 -0800 Subject: [PATCH] Mobile: add helper function to fill in the BT name For some devices the BT device name is different from the product name. Make sure that name is available to the mobile UI. This helper fills it in from the scan data (based on the device address). Signed-off-by: Dirk Hohndel --- mobile-widgets/qmlmanager.cpp | 11 +++++++++++ mobile-widgets/qmlmanager.h | 2 ++ 2 files changed, 13 insertions(+) diff --git a/mobile-widgets/qmlmanager.cpp b/mobile-widgets/qmlmanager.cpp index 8ce1a4616..8abfd3b51 100644 --- a/mobile-widgets/qmlmanager.cpp +++ b/mobile-widgets/qmlmanager.cpp @@ -1637,6 +1637,17 @@ void QMLManager::setStatusbarColor(QColor) #endif +void QMLManager::retrieveBluetoothName() +{ + QString name = DC_devName(); + QList btDCs = BTDiscovery::instance()->getBtDcs(); + foreach (BTDiscovery::btVendorProduct btDC, btDCs) { + qDebug() << "compare" <vendor(); diff --git a/mobile-widgets/qmlmanager.h b/mobile-widgets/qmlmanager.h index 98282425d..87972413d 100644 --- a/mobile-widgets/qmlmanager.h +++ b/mobile-widgets/qmlmanager.h @@ -62,6 +62,8 @@ public: QString DC_devName() const; void DC_setDevName(const QString& devName); + Q_INVOKABLE void retrieveBluetoothName(); + QString DC_devBluetoothName() const; void DC_setDevBluetoothName(const QString& devBluetoothName);