我正在使用自定义的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();
}
}
}
请帮助!