我尝试在带有easy-bluetooth-classic
模块的React-Native App上使用经典的蓝牙API。
扫描并显示检测到的所有设备后,我想与我们联系:
EasyBluetooth.connect(device)
.then(() => {
alert('Connected!');
})
.catch(ex => {
console.warn(ex);
});
但是此函数返回错误:{ [Error: Unable to connect to: Redmi [80:35:C1:41:4A:17]] framesToPop: 1, code: 'EUNSPECIFIED' }
,我不明白为什么。
所有设备均返回此错误。
也许我需要自定义config.uuid吗?
const config = {
"uuid": "00001101-0000-1000-8000-00805f9b34fb",
"deviceName": "Bluetooth Example Project",
"bufferSize": 1024,
"characterDelimiter": "\n"
}
有人可以帮助我吗?
谢谢社区!