gpt4 book ai didi

android - 以编程方式连接到蓝牙

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:22:18 24 4
gpt4 key购买 nike

我正在尝试以编程方式将我的设备连接到我的耳机上...我有 KitKat 版本并且一切正常(Bluetooth 始终可以毫无问题地连接自动)但是因为我已经更新到 Lolipop 它没有。我想知道是否有任何方法可以在打开时将我的 Android 手机 的任何配对设备连接到 Bluetooth

从现在开始,我有了这段代码(获取设备名称和设备地址),因为我认为用它我可以连接做类似 device.connect(MAC-Address); 的事情,但它没有不工作...

    BluetoothAdapter bluetoothAdapter
= BluetoothAdapter.getDefaultAdapter();
Set < BluetoothDevice > pairedDevices = bluetoothAdapter.getBondedDevices();
if (pairedDevices.size() > 0) {
for (BluetoothDevice device: pairedDevices) {
mDeviceName.add(device.getName());
mDeviceMAC.add(device.getAddress());

}
}
bluetoothClass.setDeviceName(mDeviceName);
bluetoothClass.setDeviceMac(mDeviceMAC);

问题

在我的 MotoG (KitKat) 上,如果我打开我的 Bluetooth,它会自动连接到设备(如果它靠近并配对...)但在我的 LG G3 上,我必须转到 Configuration/Bluetooth/配对设备/然后点击设备进行连接...我想避免这种情况...应该可行吗?


我想知道是否有可能连接到特定的蓝牙只需添加Device nameDevice MAC...或多或少像 Android 会在我点击我的设备进行连接时自动连接...我只想获取该 CLICK 事件。我知道 Android 应该自动连接到配对的设备,但也有任何异常(exception)情况不会......配对它的唯一方法是点击......这就是为什么我想知道它是否存在一种方法...我已经阅读并测试了 kcoppock answer但它仍然不起作用..

有什么建议吗?

编辑

我想做的主要事情是自动连接我的 Bluetooth 但因为我已经阅读了 Hey you回答...我想通了,我知道这是一个 Android 错误,所以我想做的是选择 paired devices 然后点击设备我想连接 (不执行任何 Intent) 并连接它,而不是转到 Configuration/Bluetooth/...。顺便说一句,我已经阅读了关于 StackOverflow 的任何答案,我发现了一些与 Sockets 相关的东西,它们是否用于连接 Bluetooth?这可能是一个解决方案吗?

最佳答案

编辑以回答最新问题

您可以避免使用 Intent 来搜索配对设备。当连接到未配对的设备时,将弹出一条通知要求配对设备。配对后,这些设备不应再显示此消息,连接应该是自动的(根据您编写程序的方式)。

我使用一个 intent 来启用蓝牙,并让我的设备被发现,然后我设置我的代码来连接,然后按下一个按钮来连接。在您的情况下,您需要确保您的配件也可以被发现。在我的例子中,我使用了一个唯一的 UUID,并且两个设备都必须识别它才能连接。这只能在您同时对两种设备进行编程时使用,无论是两种设备都是 Android 还是一种 Android 和另一种设备类型。

试试这个,看看它是否能解决您的问题。


这个答案是在被编辑为另一个问题之前对原始问题的回答。

为了清楚起见,我已经编辑了我的答案,因为我可以从评论中看出它具有误导性。你的问题有两个部分。

On my MotoG (KitKat) if I turn my Bluetooth it connects autommatically to device (if it's near and paired ofc...) but on my LG G3 I must go to Configuration/Bluetooth/Paired devices/ and there tap the device to connect... and I want to avoid this... should be possible?

这不是编程问题,而是平台问题。
Android 5.0 中有一个有据可查的错误,蓝牙不会自动连接以及许多其他 BT 问题。这些问题在 5.0 的所有更新中继续存在。版本,直到 5.1 才修复。升级。

http://www.digitaltrends.com/mobile/android-lollipop-problems/11/

http://forums.androidcentral.com/lg-g3/473064-bluetooth-streaming-choppy-lg-3-lollipop.html

第一个停靠点是更新到 5.1

这些问题已在 Lollipop 更新 5.1 中得到解决

http://www.reddit.com/r/Android/comments/306m3y/lollipop_51_bluetooth/


编辑:我认为这不会解决您的自动配对问题,您想知道如何使用 BTGatt。

I've seen if I type device. to check what can I do it let me connectGatt() means /.../ But I can't figure it out how to do this...

使用 BluetoothGatt

https://developer.android.com/reference/android/bluetooth/BluetoothGatt.html

This class provides Bluetooth GATT functionality to enable communication with Bluetooth Smart or Smart Ready devices. /.../ GATT capable devices can be discovered using the Bluetooth device discovery or BLE scan process.

https://developer.android.com/reference/android/bluetooth/BluetoothGattCallback.html

这是一个很好的例子,说明如何使用 BluetoothGatt(它使用听力速率):
https://github.com/googlesamples/android-BluetoothLeGatt/blob/master/Application/src/main/java/com/example/android/bluetoothlegatt/BluetoothLeService.java

我在这里复制了一些代码,以防链接失效。

它基本上遵循与常规蓝牙连接类似的线路。您需要发现并找到支持的设备。监控状态等
这是与关贸总协定最相关的两个特性。

回调:

// Implements callback methods for GATT events that the app cares about.  For example,
// connection change and services discovered.
private final BluetoothGattCallback mGattCallback = new BluetoothGattCallback() {
@Override
public void onConnectionStateChange(BluetoothGatt gatt, int status, int newState) {
String intentAction;
if (newState == BluetoothProfile.STATE_CONNECTED) {
intentAction = ACTION_GATT_CONNECTED;
mConnectionState = STATE_CONNECTED;
broadcastUpdate(intentAction);
Log.i(TAG, "Connected to GATT server.");
// Attempts to discover services after successful connection.
Log.i(TAG, "Attempting to start service discovery:" +
mBluetoothGatt.discoverServices());

} else if (newState == BluetoothProfile.STATE_DISCONNECTED) {
intentAction = ACTION_GATT_DISCONNECTED;
mConnectionState = STATE_DISCONNECTED;
Log.i(TAG, "Disconnected from GATT server.");
broadcastUpdate(intentAction);
}
}

@Override
public void onServicesDiscovered(BluetoothGatt gatt, int status) {
if (status == BluetoothGatt.GATT_SUCCESS) {
broadcastUpdate(ACTION_GATT_SERVICES_DISCOVERED);
} else {
Log.w(TAG, "onServicesDiscovered received: " + status);
}
}

@Override
public void onCharacteristicRead(BluetoothGatt gatt,
BluetoothGattCharacteristic characteristic,
int status) {
if (status == BluetoothGatt.GATT_SUCCESS) {
broadcastUpdate(ACTION_DATA_AVAILABLE, characteristic);
}
}

@Override
public void onCharacteristicChanged(BluetoothGatt gatt,
BluetoothGattCharacteristic characteristic) {
broadcastUpdate(ACTION_DATA_AVAILABLE, characteristic);
}
};

广播:

private void broadcastUpdate(final String action,
final BluetoothGattCharacteristic characteristic) {
final Intent intent = new Intent(action);

// This is special handling for the Heart Rate Measurement profile. Data parsing is
// carried out as per profile specifications:
// http://developer.bluetooth.org/gatt/characteristics/Pages/CharacteristicViewer.aspx?u=org.bluetooth.characteristic.heart_rate_measurement.xml
if (UUID_HEART_RATE_MEASUREMENT.equals(characteristic.getUuid())) {
int flag = characteristic.getProperties();
int format = -1;
if ((flag & 0x01) != 0) {
format = BluetoothGattCharacteristic.FORMAT_UINT16;
Log.d(TAG, "Heart rate format UINT16.");
} else {
format = BluetoothGattCharacteristic.FORMAT_UINT8;
Log.d(TAG, "Heart rate format UINT8.");
}
final int heartRate = characteristic.getIntValue(format, 1);
Log.d(TAG, String.format("Received heart rate: %d", heartRate));
intent.putExtra(EXTRA_DATA, String.valueOf(heartRate));
} else {
// For all other profiles, writes the data formatted in HEX.
final byte[] data = characteristic.getValue();
if (data != null && data.length > 0) {
final StringBuilder stringBuilder = new StringBuilder(data.length);
for(byte byteChar : data)
stringBuilder.append(String.format("%02X ", byteChar));
intent.putExtra(EXTRA_DATA, new String(data) + "\n" + stringBuilder.toString());
}
}
sendBroadcast(intent);
}

这道题还有一些相关的代码,学习的时候可以帮助删减:
BLuetooth Gatt Callback not working with new API for Lollipop

现在问题来了。您的设备蓝牙智能或智能就绪了吗?

此链接提供了大量智能设备。当您实现您的计划时,您也会发现这一点。

http://www.bluetooth.com/Pages/Bluetooth-Smart-Devices-List.aspx

关于android - 以编程方式连接到蓝牙,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31761416/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com