收藏
回答

蓝牙读取数据,监听返回000000000000000000什么情况

框架类型 问题类型 API/组件名称 终端类型 操作系统 微信版本 基础库版本
小程序 Bug 蓝牙 客户端 Android 6.6.6 1.1

wx.onBLECharacteristicValueChange(function (characteristic) {

var creaddata = wx.arrayBufferToBase64(characteristic.value)

var v = characteristic;

console.log('creaddata:' + creaddata);

console.log(`characteristic ${characteristic.characteristicId} has changed, now is ${characteristic.value}`)

})

console.log(that.data.readServicweId);

console.log(that.data.readCharacteristicsId);

wx.readBLECharacteristicValue({

// 这里的 deviceId 需要在上面的 getBluetoothDevices 或 onBluetoothDeviceFound 接口中获取

deviceId: that.data.connectedDeviceId,

// 这里的 serviceId 需要在上面的 getBLEDeviceServices 接口中获取

serviceId: that.data.readServicweId,

// 这里的 characteristicId 需要在上面的 getBLEDeviceCharacteristics 接口中获取

characteristicId: that.data.readCharacteristicsId,

success: function (res) {

console.log('readBLECharacteristicValue:', res.errMsg);

}

})

characteristic.value 输出为000000000000000000,是什么情况,求解!!!

@官方

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

5 个回答

  • 十三
    十三
    2020-05-20

    楼主问题解决了吗 碰到相同问题


    2020-05-20
    有用
    回复
  • 2018-05-05

    楼主情况解决了没?

    2018-05-05
    有用
    回复
  • 王涛
    王涛
    2018-04-26

    蓝牙通讯

    2018-04-26
    有用
    回复
  • 王涛
    王涛
    2018-04-25

    wechatide://minicode/0AAN1WmI6dYg

    2018-04-25
    有用
    回复
  • 疯狂的小辣椒
    疯狂的小辣椒
    2018-04-25

    麻烦给个相关的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html),我们定位下问题

    2018-04-25
    有用
    回复
登录 后发表内容