收藏
回答

writeBLECharacteristicValue 写入问题

//向低功耗蓝牙设备特征值中写入二进制数据
  writeBLECharacteristicValue: function (e) {
    var that = this;
    
    wx.onBLECharacteristicValueChange(function (characteristic) {
      that.setData({
        msg_3: JSON.stringify(characteristic)
      })
    })
    
    // 向蓝牙设备发送一个0x00的16进制数据
    let buffer = new ArrayBuffer(4)
    let dataView = new DataView(buffer)
    
    dataView.setUint8(0, 0x0D)
    dataView.setUint8(1, 0x02)
    dataView.setUint8(2, 0x11)
    dataView.setUint8(3, 0x13)
    
    wx.writeBLECharacteristicValue({
      deviceId: that.data.deviceId,
      serviceId: that.data.uuid,
      characteristicId: that.data.characteristicId,
      value: buffer,
      success: function (res) {
        that.setData({
          msg_2: JSON.stringify(res)
        })
      }
    })
  },


请问 value: buffer, 这样写对吗?


显示是成功写入的,但 onBLECharacteristicValueChange 没有回调信息


回答关注问题邀请回答
收藏

2 个回答

  • Lᵒᵛᵉᵧₒᵤ
    Lᵒᵛᵉᵧₒᵤ
    2018-06-22

    你这样写多的吗?

    2018-06-22
    有用
    回复
  • 王翊夫if
    王翊夫if
    2017-08-16

    onBLECharacteristicValueChange  是需要以下情况才会有回调

    1. 对支持notify属性的特征值调用notifyBLECharacteristicValueChange接口,并且设备上该特征值执行了notify

    2. 对支持read属性的特征值调用readBLECharacteristicValue接口,并且设备上该特征值返回了数据


    2017-08-16
    有用
    回复
登录 后发表内容