获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
- 示例代码错误
测试低功耗蓝牙时一直报错 检查后发现 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 - 设备功能链接错误?
服务-设备-设置-服务器配置 请阅读《微信硬件平台接入指引》。 链接返回 请求异常 实际链接应为:https://iot.weixin.qq.com/doc
2021-09-01