收藏
回答

示例代码错误

测试低功耗蓝牙时一直报错

检查后发现

  wx.writeBLECharacteristicValue({
      deviceId: this._deviceId,
      serviceId: this._deviceId,
      characteristicId: this._characteristicId,
      value: buffer,
    })

其中的`serviceId`写成了`_deviceId`

修改后

    wx.writeBLECharacteristicValue({
      deviceId: this._deviceId,
      serviceId: this._serviceId,
      characteristicId: this._characteristicId,
      value: buffer,
    })
回答关注问题邀请回答
收藏

2 个回答

登录 后发表内容