收藏
回答

蓝牙写入的接口writeBLECharacteristicValue接口问题

小程序蓝牙中向蓝牙发送一个0x00的16进制数据,填写到哪里

// 向蓝牙设备发送一个0x00的16进制数据let buffer = new ArrayBuffer(1)let dataView = new DataView(buffer)
dataView.setUint8(0, 0)

wx.writeBLECharacteristicValue({  // 这里的 deviceId 需要在上面的 getBluetoothDevices 或 onBluetoothDeviceFound 接口中获取
  deviceId: deviceId,  // 这里的 serviceId 需要在上面的 getBLEDeviceServices 接口中获取
  serviceId: serviceId,  // 这里的 characteristicId 需要在上面的 getBLEDeviceCharacteristics 接口中获取
  characteristicId: characteristicId,  // 这里的value是ArrayBuffer类型
  value: buffer,
  success: function (res) {    console.log('writeBLECharacteristicValue success', res.errMsg)
  }
})


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

5 个回答

  • Leiith
    Leiith
    2017-04-24

    请问解决了吗?如何解决的?我也遇到这个问题

    2017-04-24
    有用
    回复
  • Kevin
    Kevin
    2017-04-07

    我也问了类似的一个问题,采用两种方式传值,但是都是空的:

    https://developers.weixin.qq.com/blogdetail?action=get_post_info&docid=6ab06b72993057daf6b26ffba1d96e73

    2017-04-07
    有用
    回复
  • 飞
    2017-04-07

    @lhe  真机上需要调用onBluetoothDeviceFound回调函数,不停的在搜索

    2017-04-07
    有用
    回复
  • 追梦的人(IT大叔一枚)
    追梦的人(IT大叔一枚)
    2017-04-07

    这个真心希望微信团队能给个详细的栗子,我现在就是这里卡了..

    2017-04-07
    有用
    回复
  • Wd
    Wd
    2017-04-06

    你是真机测试吗  我真机测试怎么设备都搜不到的

    2017-04-06
    有用
    回复
登录 后发表内容