David Refoua
David Refoua

Reputation: 3617

Web Bluetooth on Chrome for Android is not finding any devices

I'm trying to use the new navigator.bluetooth Web Bluetooth APIs to connect to an older Bluetooth device, however using the requestDevice({acceptAllDevices: true}) method seems to not working.

According to the docs, it should show all of the bluetooth devices without any filters, but the Chrome beta on Android is not picking up any devices whatsoever, as seen in the picture.

I'm using the Web Bluetooth Terminal with the modified mentioned method above, and getting zero luck in listing any devices.

My device is not BLE, and I'm trying to use the SerialPort "SPP" profile similar to this question, which I believe has the UUID of 0x1101 or 00001101-0000-1000-8000-00805f9b34fb.

How do I list the nearby or paired Bluetooth devices on Chrome mobile for Android?

(Additional Info: Chrome 56 on Android 6.0, the Bluetooth device is a HC-05 module - tested and confirmed working correctly with a dozen of Android Bluetooth terminal apps.)


Upvotes: 0

Views: 1607

Answers (1)

François Beaufort
François Beaufort

Reputation: 5659

Web Bluetooth supports only Bluetooth Low Energy devices for now. You won't be able to connect to Bluetooth Classic devices with this Web API.

Upvotes: 1

Related Questions