From 8d66cf430cd66d8a8476159e258ba5c8e5684aff Mon Sep 17 00:00:00 2001 From: Dirk Sarodnick Date: Sun, 23 Jun 2024 00:10:45 +0200 Subject: [PATCH] added aurabox to discovery --- src/hardware/bluetoothctl.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/hardware/bluetoothctl.cpp b/src/hardware/bluetoothctl.cpp index 8723d51..25944ce 100644 --- a/src/hardware/bluetoothctl.cpp +++ b/src/hardware/bluetoothctl.cpp @@ -92,7 +92,8 @@ void BluetoothHandler::discovered(BTAdvertisedDevice* device) { // check for supported names std::string name = device->getName(); - if (name.find("Ditoo") == std::string::npos && + if (name.find("Aurabox") == std::string::npos && + name.find("Ditoo") == std::string::npos && name.find("Pixoo") == std::string::npos && name.find("Timebox") == std::string::npos && name.find("Tivoo") == std::string::npos) return;