给蓝牙设备发送数据的时候,启用notify失败
var that = this;
wx.notifyBLECharacteristicValueChange({
state: true, // 启用 notify 功能
// 这里的 deviceId 需要在上面的 getBluetoothDevices 或 onBluetoothDeviceFound 接口中获取
deviceId: that.data.deviceId,
// 这里的 serviceId 需要在上面的 getBLEDeviceServices 接口中获取
serviceId: that.data.wifi_data.service.uuid,
// 这里的 characteristicId 需要在上面的 getBLEDeviceCharacteristics 接口中获取
characteristicId: that.data.wifi_data.characteristic.uuid,
success: function (res) {
console.log(‘notifyBLECharacteristicValueChange success’, res.errMsg)
},
complete: function (res) {
console.log(res)
}
})
wx.onBLECharacteristicValueChange(function (res) {
console.log(‘特征值变化’, res);
const CharacteristicVal = that.buf2hex(res.value);
if (res.characteristicId == that.data.wifi_uuid) {
that.setData({
device_char: CharacteristicVal
});
}
});
写数据是在上述两个接口执行后,间隔2s执行的,启用notify的特征值查看明确是是支持notify的,执行的时候直接是走到fail的 ,咋回事???