读取事件侦听器未在本机反应中触发

时间:2020-02-23 18:14:37

标签: javascript reactjs react-native bluetooth

我正在React的一个蓝牙项目中工作,我正在尝试从其他设备读取数据。使用以下代码读取数据

BluetoothSerial.readFromDevice().then((data) => {
      console.log(data)
}

运行正常。 但是我想使用事件监听器来收集其他任何设备在任何随机时间发送的数据。 我正在使用{strong> @andrescheca 回答的https://github.com/rusel1989/react-native-bluetooth-serial/issues/16上的监听器。代码如下所示

    BluetoothSerial.withDelimiter('\r').then(() => {
    Promise.all([
      BluetoothSerial.isEnabled(),
      BluetoothSerial.list()
    ])
    .then((values) => {
      const [ isEnabled, devices ] = values
      this.setState({ isEnabled, devices })
    })

    BluetoothSerial.on('bluetoothEnabled', () => console.log('Bluetooth enabled'))
    BluetoothSerial.on('bluetoothDisabled', () => console.log('Bluetooth disabled'))
    BluetoothSerial.on('read', (data) => {

       console.log(`DATA FROM BLUETOOTH: ${data.data}`);
       Toast.show(data.data);
   })
    BluetoothSerial.on('error', (err) => console.log(`Error: ${err.message}`))
    BluetoothSerial.on('connectionLost', () => {
      if (this.state.device) {
        console.log(`Connection to device ${this.state.device.name} has been lost`)
      }
      this.setState({ connected: false })
    })
  });

当我启用和禁用蓝牙时,所有监听器(即bluetoothEnabled和bluetoothDisabled)都将触发。但是读取的Listener不会在接收数据时触发。我假设它应该在另一台设备发送一些数据后立即启动。 如果有人可以帮助我解决这个问题,我将不胜感激。

1 个答案:

答案 0 :(得分:0)

我解决了这个问题,只是在试图从Linux服务器发送到设备的数据末尾添加\ r。 感谢@kendavidson的帮助。