- 关于类似美团提示定位授权
[图片] 是哪个接口跟下图一样弹窗
2019-04-16 - 小米部分手机小程序蓝牙搜索不到,苹果,锤子可以。华为mate20也不行怎么回事
- 当前 Bug 的表现(可附上截图) - 预期表现 - 复现路径 - 提供一个最简复现 Demo 问题如标题,苹果手机,锤子手机目前使用可以,小米5s 小米8,华为mate20搜索不到蓝牙设备 如下图为小米5s测试结果: [图片] 请求大神解答,是不兼容还是怎么回事
2019-04-16 - 小程序BLE连接后能不能实时获取RSSI值的问题
请官网给出答案行吗?不行的话也好早些放弃,要不浪费时间啊
2018-11-15 - 小程序可以获取蓝牙距离吗
想做一个蓝牙在一定距离做一些事
2018-11-14 - 能不能获取到小程序的省市区的数据
- 需求的场景描述(希望解决的问题) [图片] - 希望提供的能力 希望得到小程序这省市区的数据。网上大都不对应或者完整。想后台配置时也统一
2018-11-07 - 小程序蓝牙发送数据后无回调,大神们帮我解答下,花了一个星期了,急,官方也不理
请大佬们帮我看看,就是发送给蓝牙数据后无法接受到回调值,之前是用app对接蓝牙设备的(app上设备正常回调),现在要应用到小程序上,数据发送了,但一直没有接收到回调的值,需要回调的值进行解密。以下是网下的一个dome,做了一些调整,弄了一个星期了求大佬大神指点 //发送 lanya8: function () { var that = this; // 这里的回调可以获取到 write 导致的特征值改变 var buf = new ArrayBuffer(16) var dataView = new DataView(buf) wx.request({ url: globalData.serveUrl + '*******.do',//后台加密返回请求 success: function (data) { var str = data.data.infoData; var arr = str.split(","); console.log(arr); for (var i = 0; i < arr.length; i++) { dataView.setInt8(i, arr[i]); } console.log('str', buf);//例如["12", "88", "68", "118", "52", "16", "1", "0", "0", "-13", "-65", "-28", "114"] wx.writeBLECharacteristicValue({ deviceId: that.data.connectedDeviceId, // 这里的 serviceId 需要在上面的 getBLEDeviceServices 接口中获取 serviceId: that.data.notifyServicweId, // 这里的 characteristicId 需要在上面的 getBLEDeviceCharacteristics 接口中获取 characteristicId: that.data.notifyCharacteristicsId, // 这里的value是ArrayBuffer类型 value: buf, success: function (res) { console.log('writeBLECharacteristicValue success', res.errMsg) //这里发送成功,公司的蓝牙设备显示了绿灯代表能接收到 } }) }, fail: function (res) { console.log(that.data.notifyServicweId); console.log(that.data.notifyCharacteristicsId); console.log('writeBLECharacteristicValue Error', res.errMsg) } }) }, //启用低功耗蓝牙设备特征值变化时的 notify 功能 lanya9: function () { var that = this; wx.notifyBLECharacteristicValueChange({ type: "indication", state: true, // 启用 notify 功能 // 这里的 deviceId 需要在上面的 getBluetoothDevices 或 onBluetoothDeviceFound 接口中获取 deviceId: that.data.connectedDeviceId, // 这里的 serviceId 需要在上面的 getBLEDeviceServices 接口中获取 serviceId: that.data.notifyServicweId, // 这里的 characteristicId 需要在上面的 getBLEDeviceCharacteristics 接口中获取 characteristicId: that.data.notifyCharacteristicsId, success: function (res) { console.log('notifyBLECharacteristicValueChange success', res.errMsg);//这里开启成功 返回了ok that.lanya10();//执行监听 }, fail: function (res) { console.log(that.data.notifyServicweId); console.log(that.data.notifyCharacteristicsId); console.log('notifyBLECharacteristicValueChangeError', res.errMsg) }, }) }, //接收消息 lanya10: function () { var that = this; // 必须在这里的回调才能获取 wx.onBLECharacteristicValueChange(function (characteristic) { console.log("66666666666"); let hex = Array.prototype.map.call(new Uint8Array(characteristic.value), x => ('00' + x.toString(16)).slice(-2)).join(''); console.log("hexhexhexhexhexhex:" + hex) wx.request({ url: globalData.serveUrl + '***.do', data: { hexString: hex }, method: "POST", header: { 'content-type': 'application/x-www-form-urlencoded' }, success: function (data) { var res = data.data.infoData; console.log(res) that.setData({ jieshou: res }) }, fail: function (res) { console.log('onBLECharacteristicValueChangeError', res.errMsg) } }) }) }
2018-10-23 - onBLECharacteristicValueChange无回调,弄了好久好久
请大佬们帮我看看,就是发送给蓝牙数据后无法接受到回调值,之前是用app对接蓝牙设备的(app上设备正常回调),现在要应用到小程序上,数据发送了,但一直没有接收到回调的值,需要回调的值进行解密。以下是网下的一个dome,做了一些调整,弄了一个星期了求大佬大神指点 //发送 lanya8: function () { var that = this; // 这里的回调可以获取到 write 导致的特征值改变 var buf = new ArrayBuffer(16) var dataView = new DataView(buf) wx.request({ url: globalData.serveUrl + '*******.do',//后台加密返回请求 success: function (data) { var str = data.data.infoData; var arr = str.split(","); console.log(arr); for (var i = 0; i < arr.length; i++) { dataView.setInt8(i, arr[i]); } console.log('str', buf);//例如["12", "88", "68", "118", "52", "16", "1", "0", "0", "-13", "-65", "-28", "114"] wx.writeBLECharacteristicValue({ deviceId: that.data.connectedDeviceId, // 这里的 serviceId 需要在上面的 getBLEDeviceServices 接口中获取 serviceId: that.data.notifyServicweId, // 这里的 characteristicId 需要在上面的 getBLEDeviceCharacteristics 接口中获取 characteristicId: that.data.notifyCharacteristicsId, // 这里的value是ArrayBuffer类型 value: buf, success: function (res) { console.log('writeBLECharacteristicValue success', res.errMsg) //这里发送成功,公司的蓝牙设备显示了绿灯代表能接收到 } }) }, fail: function (res) { console.log(that.data.notifyServicweId); console.log(that.data.notifyCharacteristicsId); console.log('writeBLECharacteristicValue Error', res.errMsg) } }) }, //启用低功耗蓝牙设备特征值变化时的 notify 功能 lanya9: function () { var that = this; wx.notifyBLECharacteristicValueChange({ type: "indication", state: true, // 启用 notify 功能 // 这里的 deviceId 需要在上面的 getBluetoothDevices 或 onBluetoothDeviceFound 接口中获取 deviceId: that.data.connectedDeviceId, // 这里的 serviceId 需要在上面的 getBLEDeviceServices 接口中获取 serviceId: that.data.notifyServicweId, // 这里的 characteristicId 需要在上面的 getBLEDeviceCharacteristics 接口中获取 characteristicId: that.data.notifyCharacteristicsId, success: function (res) { console.log('notifyBLECharacteristicValueChange success', res.errMsg);//这里开启成功 返回了ok that.lanya10();//执行监听 }, fail: function (res) { console.log(that.data.notifyServicweId); console.log(that.data.notifyCharacteristicsId); console.log('notifyBLECharacteristicValueChangeError', res.errMsg) }, }) }, //接收消息 lanya10: function () { var that = this; // 必须在这里的回调才能获取 wx.onBLECharacteristicValueChange(function (characteristic) { console.log("66666666666"); let hex = Array.prototype.map.call(new Uint8Array(characteristic.value), x => ('00' + x.toString(16)).slice(-2)).join(''); console.log("hexhexhexhexhexhex:" + hex) wx.request({ url: globalData.serveUrl + '***.do', data: { hexString: hex }, method: "POST", header: { 'content-type': 'application/x-www-form-urlencoded' }, success: function (data) { var res = data.data.infoData; console.log(res) that.setData({ jieshou: res }) }, fail: function (res) { console.log('onBLECharacteristicValueChangeError', res.errMsg) } }) }) }
2018-10-23