- 小程序蓝牙安卓版本
安卓蓝牙接口中 wx.getBluetoothDevices(OBJECT)报错不能进行下去,请问官方是什么问题
2017-04-17 - 小程序如何使用DES加密
DES加密怎么在小程序中使用,我现在找的js机密,但是解密之后成乱码,谁有系统的正确的库,求发一下
2017-04-13 - 小程序蓝牙写入接口的示例代码
求一篇,蓝牙小程序写入接口 [代码]writeBLECharacteristicValue[代码]实例代码,大神们,帮帮忙看看
2017-04-10 - 蓝牙写入的接口writeBLECharacteristicValue接口问题
小程序蓝牙中向蓝牙发送一个0x00的16进制数据,填写到哪里 [代码]// 向蓝牙设备发送一个0x00的16进制数据let buffer = new ArrayBuffer(1)let dataView = new DataView(buffer) dataView.setUint8(0, 0) wx.writeBLECharacteristicValue({ // 这里的 deviceId 需要在上面的 getBluetoothDevices 或 onBluetoothDeviceFound 接口中获取 deviceId: deviceId, // 这里的 serviceId 需要在上面的 getBLEDeviceServices 接口中获取 serviceId: serviceId, // 这里的 characteristicId 需要在上面的 getBLEDeviceCharacteristics 接口中获取 characteristicId: characteristicId, // 这里的value是ArrayBuffer类型 value: buffer, success: function (res) { console.log('writeBLECharacteristicValue success', res.errMsg) } })[代码]
2017-04-06 - 小程序蓝牙mac上调试有列表,在真机上搜不到
小程序蓝牙mac上调试有列表,在真机(苹果机)上搜不到,mac上调试都可以,真机上搜索列表的时候就没有,进行不下去,大神们都来帮帮忙看看。
2017-04-05