调用wx.notifyBLECharacteristicValueChange 成功后 调用 wx.onBLECharacteristicValueChange没法获取设备发送过来的信息 用别的App可以 请问这个监听的方式开启是不是还有其他的方式
wx.notifyBLECharacteristicValueChange({
// 这里的 deviceId 需要在上面的 getBluetoothDevices 或 onBluetoothDeviceFound 接口中获取
deviceId: that.data.connectedDeviceId,
// 这里的 serviceId 需要在上面的 getBLEDeviceServices 接口中获取
serviceId: notifyServicweId,
// 这里的 characteristicId 需要在上面的 getBLEDeviceCharacteristics 接口中获取
characteristicId: notifyCharacteristicsId,
// 启用 notify 功能
state: true,
success: function (res) {
wx.onBLECharacteristicValueChange(function (characteristic) {
let hex = Array.prototype.map.call(new Uint8Array(characteristic.value), x => (‘00’ + x.toString(16)).slice(-2)).join(’’);
console.log(“het” + hex)
})
console.log(‘notifyBLECharacteristicValueChange success’, res.errMsg)
},
fail: function (res) {
console.log(‘shibai’, res.errMsg);
console.log(that.data.notifyServicweId);
console.log(that.data.notifyCharacteristicsId);
},
})