diff --git a/app/src/IO/Drivers/BluetoothLE.cpp b/app/src/IO/Drivers/BluetoothLE.cpp index 1a5b40ab..d4fd6943 100644 --- a/app/src/IO/Drivers/BluetoothLE.cpp +++ b/app/src/IO/Drivers/BluetoothLE.cpp @@ -22,6 +22,7 @@ #include +#include "Misc/Utilities.h" #include "IO/Drivers/BluetoothLE.h" //------------------------------------------------------------------------------ @@ -40,6 +41,12 @@ IO::Drivers::BluetoothLE::BluetoothLE() { connect(this, &IO::Drivers::BluetoothLE::deviceIndexChanged, this, &IO::Drivers::BluetoothLE::configurationChanged); + + connect(this, &IO::Drivers::BluetoothLE::error, this, + [=](const QString &message) { + Misc::Utilities::showMessageBox(tr("BLE I/O Module Error"), + message); + }); } /**