Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bluetooth device is not (correctly) recognized #84

Open
Marcus-En opened this issue Jul 14, 2024 · 1 comment
Open

Bluetooth device is not (correctly) recognized #84

Marcus-En opened this issue Jul 14, 2024 · 1 comment
Labels

Comments

@Marcus-En
Copy link

Hello,

I have a WunderLINQ adapter from https://blackboxembedded.com/ on my motorbike. It is a kind of intelligent DB2 CAN bus to BT bridge, but has NO AUDIO function. I have an early V1 hardware version.
The adaptor in linked via bluetooth to my smartphone and works properly. In my cellphone the name of the device is "WunderLINQ".
I can add it in your app (premium) with the "+" in the devices overview and it gets listed there.

But it ALWAYS get listed as "Never seen" / "Nie gesehen" in the app and so never
When the WunderLinq actually is connected, I get a the following notification:
"No devices found. Waiting for WunderLINQ, to complete the connection (#XX)" (my translation from german)
"Keine Geräte verbunden. Auf WunderLINQ wartend, um die Verbindung fertigzustellen (#XX)"
While this dialog is changing every few seconds, from "No device found" to "No device found. Waiting for WunderLINQ to complete the connection (#XX)" and back, with XX counting up each 'try'.

Is the problem maybe caused by the missing audio function of the device?

Certainly I use the app to control the volume for some devices.
But I simply miss the function to start a particular android app, when the WunderLinq device gets connected.
Maybe I find another app to fulfill that small task.

Any idea??

Thanks for your support.

@d4rken
Copy link
Member

d4rken commented Jul 16, 2024

Hm, I don't think the audio functionality is required.

Check under advanced settings that the extra profiles are not disabled:

if (!settings.isGATTExcluded()) {
profiles.add(LiveBluetoothSource.this.getDevicesForProfile(BluetoothProfile.GATT));
}
if (!settings.isGATTServerExcluded()) {
profiles.add(LiveBluetoothSource.this.getDevicesForProfile(BluetoothProfile.GATT_SERVER));
}
profiles.add(LiveBluetoothSource.this.getDevicesForProfile(BluetoothProfile.HEADSET));
profiles.add(LiveBluetoothSource.this.getDevicesForProfile(BluetoothProfile.A2DP));
if (!settings.isHealthDeviceExcluded()) {
profiles.add(LiveBluetoothSource.this.getDevicesForProfile(BluetoothProfile.HEALTH));
}

Besides that, maybe the WunderLINQ adapter is not making a direct connection, does the system show the device as "connected" in the list of Bluetooth devices?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants