Index: sources/bluetooth/BluetoothInterface.cpp =================================================================== diff -u -ra7c580f0998ee781c47314384f677249cea4c4b4 -r1899a965b63d5b98745d4434391f556cdba6615b --- sources/bluetooth/BluetoothInterface.cpp (.../BluetoothInterface.cpp) (revision a7c580f0998ee781c47314384f677249cea4c4b4) +++ sources/bluetooth/BluetoothInterface.cpp (.../BluetoothInterface.cpp) (revision 1899a965b63d5b98745d4434391f556cdba6615b) @@ -1233,9 +1233,20 @@ */ void BluetoothInterface::interpretInformation() { + QString vendorName; + QString modelNumberString; for ( auto const &detail: _serviceDeviceInformation->characteristics()) { + switch(detail.uuid().toUInt32()) + { + case QBluetoothUuid::ManufacturerNameString : vendorName = detail.value(); break; + case QBluetoothUuid::ModelNumberString : modelNumberString = detail.value(); break; + default: + break; + } + qDebug() << " ~~~~~ " << detail.name() << detail.uuid() << detail.value(); } + emit didDeviceInfoUpdated(vendorName, modelNumberString); } /*!