- 想要实现测量物体的尺寸,怎么弄呢?
比如我有一张物体的照片,小程序里有什么方法可以得到该物体的长宽高信息呢,或者能实时检测到物体的尺寸也行,有没有知道的大佬,求告知
09-10 - 为什么退出二级页面后,二级页面的反馈弹框仍然会出现?
在二级页面做了连接蓝牙操作,连接蓝牙还没结束,比如进行到了获取服务特征值,这个时候退出了该二级页面,过一会儿就发现此前二级页面的请求反馈弹框弹出来了,失败,加载中都能显示,showToast,showLosding,showModal这些。感觉就好像我虽然退出了那个页面,那个页面正在做的连接蓝牙进程仍然在继续。有什么办法解决呢?
06-25 - writeValueToCharacteristics error 10002?
{"errCode": 10002, "errno": 1509006, "errMsg": "writeBLECharacteristicValue:fail writeValueToCharacteristics error 10002"} iphone12pro手机 连接成功之后,订阅也成功,能收到我们第一包广播数据,但是 write写报 1002未找到指定设备,为什么? 不知道该怎么解决了,有上传过日志,15:45左右 wangweiy934
2023-12-15 - 蓝牙不连接,notifyBLECharacteristicValueChange能直接订阅吗?
不连接蓝牙,notifyBLECharacteristicValueChange能直接订阅吗? 或者连接蓝牙可以不用搜索的deviceID 业务需要,没有存储搜索的deviceID,影响使用绑定之后的设备进行蓝牙通信
2023-12-11 - setBLEMTU报错1500104,fail:internal error?
部分android手机协商MTU报错,1500104,协商的值降低就不会报错,为什么? 同一个蓝牙设备,手机的问题吗?那每个手机最大协商MTU是多少从哪里能得知呢? 华为手机,微信:8.0.43,HarmonyOS 2.0.1,上传了日志:cetc_xiaoming 12.08日 18:30左右 [图片] 代码片段:https://developers.weixin.qq.com/s/2KgOyjm37fN2
2023-12-08 - createBLEConnection失败?
"errno": 1509001, "errCode": 10003, "errMsg": "createBLEConnection:fail:connection fail status:255" "errno": 1509005, "errCode": 10003, "errMsg": "createBLEConnection:fail:connection fail status:255" 上述两种报错,只在android手机,昨天连接还好好的,今天就频繁失败,下午一次成功的都没有了,希望有解决办法,项目还挺急的
2023-12-07 - 搜索不到蓝牙设备?
进入页面初始化成功,蓝牙和定位权限都有,搜不到附近设备,之前都能搜到,今天频繁搜不到。 今天上午出现这问题时重进小程序还可以搜到,下午不行了,没有一次搜到的,什么情况?
2023-12-07 - VKSession摄像头人脸检测,检测不到人脸,授权摄像头之后没反应了
const session = wx.createVKSession({ track: { face: { mode: 1 } // mode: 1 - 使用摄像头;2 - 手动传入图像 }, }) // 摄像头实时检测模式下,监测到人脸时,updateAnchors 事件会连续触发 (每帧触发一次) session.on('updateAnchors', anchors => { anchors.forEach(anchor => { console.log('anchor.points', anchor.points) console.log('anchor.origin', anchor.origin) console.log('anchor.size', anchor.size) console.log('anchor.angle', anchor.angle) }) }) // 当人脸从相机中离开时,会触发 removeAnchors 事件 session.on('removeAnchors', () => { console.log('removeAnchors') }) // 需要调用一次 start 以启动 session.start(errno => { if (errno) { // 如果失败,将返回 errno } else { // 否则,返回null,表示成功 } }) 进入页面能弹出授权摄像头,但是授权之后没反应,页面一片白,也检测不到人脸,没有输出 手机oppo reno7 SE,android13
2023-11-13 - VKSession.on没有输出?
根据这个文档写的https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/visionkit/face.html const session = wx.createVKSession({ track: { face: { mode: 1 } // mode: 1 - 使用摄像头;2 - 手动传入图像 }, }) // 摄像头实时检测模式下,监测到人脸时,updateAnchors 事件会连续触发 (每帧触发一次) session.on('updateAnchors', anchors => { anchors.forEach(anchor => { console.log('anchor.points', anchor.points) console.log('anchor.origin', anchor.origin) console.log('anchor.size', anchor.size) console.log('anchor.angle', anchor.angle) }) }) // 当人脸从相机中离开时,会触发 removeAnchors 事件 session.on('removeAnchors', () => { console.log('removeAnchors') }) // 需要调用一次 start 以启动 session.start(errno => { if (errno) { // 如果失败,将返回 errno } else { // 否则,返回null,表示成功 } }) 是少了什么东西吗?
2023-11-13 - wx.createVKSession start真机调试报错VK error: 2000004?
设备不支持吗?我的手机是我日常用的手机,如果这个手机不支持,发到线上会很多手机不支持,有没有解决办法?
2023-11-11