iOS 11& Ionic 3使用BluetoothSerial cordova插件实现BlueTooth连接

时间:2017-10-09 07:32:16

标签: angular cordova ionic-framework ionic3

我试图用这个插件连接一个neurosky MindWave(检测脑信号): https://ionicframework.com/docs/native/bluetooth-serial/ 由Ionic提供。 但是当我尝试发现可用的设备时,我收到了这个错误:

  

方法'discoverUnpaired:'未在插件'BluetoothSerial'中定义

这是我的代码:

this.bluetoothSerial.discoverUnpaired().then((success) => {
  success.forEach(device => {
      console.log('Device detected! - ' , device);
    });
  },
  (err) => {
    console.log(err);
  })

0 个答案:

没有答案