- writeBLECharacteristicValue写入数据返回成功后,硬件内信息查询未存储?
writeBLECharacteristicValue写入数据,会返回成功,实际在硬件查询时,发现没有存储到硬件里面; 原因是传输内容的字节超出了,小程序的最大mtu字节数; 例如传递内容为'123456789101112131415161718',小程序会返回传输成功,实际硬件接收到的是被拦截的数据'12345678910111213141'; 希望此处可以对字节数进行校验,弹出异常,感谢!!!
2024-11-29 - writeBLECharacteristicValue写入数据返回成功后,硬件内信息查询未存储?
使用writeBLECharacteristicValue写入数据返回成功后,对硬件内的信息进行查询,实际没有信息存储 const addWifi = () => { const command = `at+wifi_add=${state.wifiPwd}@${state.wifiName}\r\n` const buffer = stringToAsciiCodes(command) Taro.writeBLECharacteristicValue({ deviceId: getStorageSync(CUR_USER_TEACHING_ASSISTANT).macAddress, serviceId: serviceId, characteristicId: characteristicId, value: buffer, success(res) { console.log('增加wifi成功', res) toggleWifi(true) const wifiBuffer = stringToAsciiCodes('at+wifi?\r\n') Taro.writeBLECharacteristicValue({ deviceId: getStorageSync(CUR_USER_TEACHING_ASSISTANT).macAddress, serviceId: serviceId, characteristicId: characteristicId, value: wifiBuffer, success(writeRes) { console.log('指令发送成功', writeRes) }, fail(err) { console.error('指令发送失败:', err) } }) routeBack({ delta: 3 }) }, fail(err) { console.log('增加wifi失败', err) if (err.errMsg.includes('no connection')) { // connectToDevice() } } }) }
2024-11-26 - 与硬件蓝牙连接后,写入数据报错未连接蓝牙?
具体报错:{"errno": 1509003, "errCode": 10006, "errMsg": "writeBLECharacteristicValue:fail:no connection"}
2024-11-26 - 打开页面报错Page "" has not been register yet?
打开页面报错Page "" has not been register yet? 此页面是配置成功的
2024-11-07 - App拉起小程序,无法正常返回app?(有的时候可以正常返回,有的时候又不可以)
App拉起小程序,无法正常返回app?(有的时候可以正常返回,有的时候又不可以) 没有报错出现!
2024-08-30 - rootCompPath not found 为什么会出现这个报错?
[wxapplib]] [addView] viewId=-814915542 rootCompPath='这里是页面路径' not found 这种报错怎么解决,检查了app.json页面路径是正确配置的。
2024-08-20 - 批量授权(授权设备组)requestDeviceVoIP,为什么会报错1001?
请问一下,我们在授权设备组的时候,使用的 // 批量授权(授权设备组) wx.requestDeviceVoIP({ isGroup: true, groupId: '设备组 ID', success(res) { console.log(res) }, fail(res) { console.log(res) } }) 为什么会出现以下报错呢? {"errno":1001,"errMsg":"requestDeviceVoIP:fail parameter error: parameter.sn should be String instead of Undefined;parameter.snTicket should be String instead of Undefined;parameter.modelId should be String instead of Undefined;parameter.deviceName should be String instead of Undefined;"}
2024-08-12 - 小程序 h5页面中点击,按钮支持跳转到微信指定联系人并打开视频通话吗?
小程序 h5页面中点击,按钮支持跳转到微信指定联系人并打开视频通话吗? 支持的话,需要怎么实现呢? 不支持的话,是什么原因呢?
2024-05-23