Skip to content

Commit

Permalink
added aurabox to discovery
Browse files Browse the repository at this point in the history
  • Loading branch information
d03n3rfr1tz3 committed Jun 22, 2024
1 parent bad89f4 commit 8d66cf4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/hardware/bluetoothctl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 8d66cf4

Please sign in to comment.