Support Bluetooth 3.0 HS in Android

I did not find any information on Bluetooth 3.0 HS support in Android . Is there an API for this? Is it supported at all?

I have an Android-based (4.1.2 with BlueZ stack) device Android-based (4.1.2 with BlueZ stack) with hardware support for Bluetooth 3.0 HS . I'm trying to figure out how much effort needs to be done to add support for Bluetooth 3.0 HS in Android + BlueZ . Maybe it's better to switch to the newer Android and Bluetooth stack (bluedroid) ?

+7
android android bluetooth
source share
1 answer

Android does not have an API specifically for Bluetooth 3.0 or even just BLE. It provides the basic API of BluetoothProfile.ServiceListener and several methods for its own Bluetooth class, but in each case they abstract the details of the equipment, I would try to use a newer open source stack if possible, but not one of them that I saw it doesn’t allow you to access speed protocols, I'm not sure why you want to manipulate them directly if standard libraries are compiled for Bluetooth to work on your device.

0
source share

All Articles