简易蓝牙经典模块连接

时间:2018-10-01 13:18:52

标签: android react-native bluetooth

我尝试在带有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"
}

有人可以帮助我吗?

谢谢社区!

0 个答案:

没有答案