微信小程序使用蓝牙小插件
本文实例为大家分享了微信小程序使用蓝牙小插件,供大家参考,具体内容如下
bluetooth.js
functionBLE(options){
this.options=options||{locator:{}};
}
functionab2hex(buffer){
consthexArr=Array.prototype.map.call(
newUint8Array(buffer),
function(bit){
return('00'+bit.toString(16)).slice(-2)
}
)
returnhexArr.join('-')
};
BLE.prototype={
open:function(callback){//打开适配器成功调用callback();
wx.openBluetoothAdapter({
success(res){
if(typeofcallback!="undefined"){
callback();
}
},
fail(res){
console.log(res)
}
})
},
scan:function(callback){//扫描设备成功调用callback(ls);
wx.startBluetoothDevicesDiscovery({
success(res){
wx.getBluetoothDevices({
success(res){
console.log(res);
varls=[];
for(vari=0;i
index.js
constBle=require('../../lib/bluetooch/bluetooch');
varble=newBle.BLE();
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持毛票票。