安卓应用程序是否需要同时扮演中心设备和外围设备的角色才能通过BLE发送和接收数据?
创始人
2024-11-09 18:00:43
0

在安卓应用程序中,通常情况下并不需要同时扮演中心设备和外围设备的角色来通过BLE(低功耗蓝牙)发送和接收数据。通常情况下,安卓设备可以作为中心设备与外围设备通信,或者作为外围设备与中心设备通信。

以下是一个简单的代码示例,演示如何在安卓设备上作为中心设备与外围设备进行BLE通信:

import android.bluetooth.BluetoothAdapter;
import android.bluetooth.BluetoothDevice;
import android.bluetooth.BluetoothGatt;
import android.bluetooth.BluetoothGattCallback;
import android.bluetooth.BluetoothGattCharacteristic;
import android.bluetooth.BluetoothGattService;
import android.bluetooth.BluetoothManager;
import android.content.Context;

public class BleManager {
    private Context context;
    private BluetoothAdapter bluetoothAdapter;
    private BluetoothGatt bluetoothGatt;

    public BleManager(Context context) {
        this.context = context;
        BluetoothManager bluetoothManager = (BluetoothManager) context.getSystemService(Context.BLUETOOTH_SERVICE);
        bluetoothAdapter = bluetoothManager.getAdapter();
    }

    public void connectToDevice(BluetoothDevice device) {
        bluetoothGatt = device.connectGatt(context, false, gattCallback);
    }

    public void disconnect() {
        if (bluetoothGatt != null) {
            bluetoothGatt.disconnect();
            bluetoothGatt.close();
        }
    }

    private BluetoothGattCallback gattCallback = new BluetoothGattCallback() {
        @Override
        public void onConnectionStateChange(BluetoothGatt gatt, int status, int newState) {
            super.onConnectionStateChange(gatt, status, newState);
            if (newState == BluetoothGatt.STATE_CONNECTED) {
                // 连接成功
                gatt.discoverServices();
            } else if (newState == BluetoothGatt.STATE_DISCONNECTED) {
                // 连接断开
            }
        }

        @Override
        public void onServicesDiscovered(BluetoothGatt gatt, int status) {
            super.onServicesDiscovered(gatt, status);
            if (status == BluetoothGatt.GATT_SUCCESS) {
                BluetoothGattService service = gatt.getService(serviceUUID);
                BluetoothGattCharacteristic characteristic = service.getCharacteristic(characteristicUUID);
                // 读取特征值
                gatt.readCharacteristic(characteristic);
                // 发送数据到外围设备
                characteristic.setValue(data);
                gatt.writeCharacteristic(characteristic);
            }
        }

        @Override
        public void onCharacteristicRead(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic, int status) {
            super.onCharacteristicRead(gatt, characteristic, status);
            if (status == BluetoothGatt.GATT_SUCCESS) {
                // 读取特征值成功
                byte[] data = characteristic.getValue();
                // 处理接收到的数据
            }
        }

        @Override
        public void onCharacteristicWrite(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic, int status) {
            super.onCharacteristicWrite(gatt, characteristic, status);
            if (status == BluetoothGatt.GATT_SUCCESS) {
                // 发送数据成功
            }
        }
    };
}

在使用上述代码示例时,首先需要获取蓝牙适配器(BluetoothAdapter)并连接到外围设备。然后,在连接状态改变回调(onConnectionStateChange)中调用discoverServices()以发现外围设备提供的服务。在服务发现回调(onServicesDiscovered)中,可以获取特定服务和特征值,并使用readCharacteristic()读取特征值,或者使用writeCharacteristic()发送数据到外围设备。在读取特征值回调(onCharacteristicRead)和写入特征值回调(onCharacteristicWrite)中,可以处理读取和写入操作的结果。

需要注意的是,具体的UUID和数据格式等需要根据实际情况进行配置和处理。此外,还需要在AndroidManifest.xml文件中添加相应的权限和特性声明,以及在运行时请求蓝牙权限。

相关内容

热门资讯

安装ug未能链接到许可证服务器 安装UG未能链接到许可证服务器是UG用户在安装软件时常遇到的问题之一。该问题的解决方法需要技术向的知...
按转换模式过滤日志【%t】。 要按照转换模式过滤日志,可以使用正则表达式来实现。下面是一个示例代码,使用Java语言的Patter...
安装Pillow时遇到了问题:... 遇到这个问题,可能是因为缺少libwebpmux3软件包。解决方法是手动安装libwebpmux3软...
安卓 - 谷歌地图卡住了 问题描述:在安卓设备上使用谷歌地图应用时,地图卡住了,无法进行任何操作。解决方法一:清除应用缓存和数...
安装Python库"... 安装Python库"firedrake"的解决方法如下:打开终端或命令提示符(Windows系统)。...
安装React Native时... 当安装React Native时出现构建错误的情况,可以尝试以下解决方法:确保已经安装了最新版本的C...
安装某些NPM包时,'... 在NPM中,'@'符号是用来分隔软件包名称和其特定版本或范围参数的。例如,您可以使用以下命令安装 R...
按照CSV文件中的名称对图像进... 要按照CSV文件中的名称对图像进行筛选,可以使用以下步骤:读取CSV文件:使用Python的csv模...
Android TV 盒子出现... Android TV 盒子上的应用程序停止运行可能是由于多种原因引起的,以下是一些可能的解决方法和相...
ASP计时器阻塞用户界面吗? 在ASP中,计时器不会阻塞用户界面。因为ASP是基于事件驱动的,它使用异步编程模型,不会阻塞用户界面...