BLE-智能手机无法保存我的设备的配对

时间:2019-03-15 11:45:29

标签: android bluetooth-lowenergy

我正在使用自定义的APP蓝牙和设备BLE,但存在一些问题。我的手机是Samsung A8,我安装了我的应用程序。如果我不与设备配对使用APP,则效果很好。我可以打开/关闭设备的指示灯。如果使用配对,则单击“连接”,但无法打开/关闭LED。我的智能手机只能工作1次,退出和返回应用程序后只能工作一次。如果我想重新连接,则需要配对。

我用我的代码编写:

private void getpaireddevices(){
    Set<BluetoothDevice> devicesArray = BluetoothAdapter.getDefaultAdapter().getBondedDevices();
    if(devicesArray.size() > 0) {
        for(BluetoothDevice device : devicesArray) {
            device.getName();
            device.getAddress();
        }
    }
}

请帮助!

0 个答案:

没有答案