获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
https://developers.weixin.qq.com/miniprogram/dev/framework/device/bluetooth.html 代码在页面底部
示例代码错误测试低功耗蓝牙时一直报错 检查后发现 wx.writeBLECharacteristicValue({ deviceId: this._deviceId, serviceId: this._deviceId, characteristicId: this._characteristicId, value: buffer, }) 其中的`serviceId`写成了`_deviceId` 修改后 wx.writeBLECharacteristicValue({ deviceId: this._deviceId, serviceId: this._serviceId, characteristicId: this._characteristicId, value: buffer, })
2022-08-08