欢迎大家前往腾讯云技术社区,获取更多腾讯海量技术实践干货哦~
作者:朱胜

导语

蓝牙在日常生活中广泛使用的一项技术,小程序给了我们前端工程师一个控制蓝牙的方法,带上你的设备,来看看怎么控制你的蓝牙设备吧。

1. 背景介绍

蓝牙是爱立信公司创立的一种无线技术标准,为短距离的硬件设备提供低成本的通信规范。蓝牙规范由蓝牙技术联盟(Bluetooth Special Interest Group,简称SIG)管理,在计算机,手机,传真机,耳机,汽车,家用电器等等很多场景广泛使用。蓝牙具有以下一些特点:
(1) 免费使用:使用的工作频段在2.4GHz的工科医(ISM)频段,无需申请许可证。
(2) 功耗低:BLE4.0包含了一个低功耗标准(Bluetooth Low Energy),可以让蓝牙的功耗显著降低
(3) 安全性高:蓝牙规范提供了一套安全加密机制和授权机制,可以有效防范数据被窃取
(4) 传输率高:目前最新BLE4.0版本,理论传输速率可达3Mbit/s(实际肯定达不到),理论覆盖范围可达100米。
1508314661423_3343_1508314685332.jpg
1508314674485_6520_1508314698318.png

2.小程序蓝牙介绍

小程序API提供了一套蓝牙操作接口,所以作为我们前端开发人员可以更加方便的进行蓝牙设备开发,而无需了解安卓和IOS的各种蓝牙底层概念。小程序的蓝牙操作大多都是通过异步调用来处理的,这里面就存在着一些坑,后面会详细介绍。在使用小程序蓝牙API之前有几个概念或者说术语需要预先了解:
(1) 蓝牙终端:我们常说的硬件设备,包括手机,电脑等等。
(2) UUID:是由子母和数字组成的40个字符串的序号,根据硬件设备有关联的唯一ID。
(3) 设备地址:每个蓝牙设备都有一个设备地址deviceId,但是安卓和IOS差别很大,安卓下设备地址就是mac地址,但是IOS无法获取mac地址,所以设备地址是针对本机范围有效的UUID,所以这里需要注意,后面会介绍。
(4) 设备服务列表:每个设备都存在一些服务列表,可以跟不同的设备进行通信,服务有一个serviceId来维护,每个服务包含了一组特征值。
(5) 服务特征值:包含一个单独的value值和0 –n个用来描述characteristic 值(value)的descriptors。一个characteristics可以被认为是一种类型的,类似于一个类。
(6) ArrayBuffer:小程序中对蓝牙数据的传递是使用ArrayBuffer的二进制类型来的,所以在我们的使用过程中需要进行转码。
1508314805462_3727_1508314829406.png

3. API总览

小程序对蓝牙设备的操作有18个API
[td]
API名称说明
openBluetoothAdapter初始化蓝牙适配器,在此可用判断蓝牙是否可用
closeBluetoothAdapter关闭蓝牙连接,释放资源
getBluetoothAdapterState获取蓝牙适配器状态,如果蓝牙未开或不可用,这里可用检测到
onBluetoothAdapterStateChange蓝牙适配器状态发生变化事件,这里可用监控蓝牙的关闭和打开动作
startBluetoothDevicesDiscovery开始搜索设备,蓝牙初始化成功后就可以搜索设备
stopBluetoothDevicesDiscovery当找到目标设备以后需要停止搜索,因为搜索设备是比较消耗资源的操作
getBluetoothDevices获取已经搜索到的设备列表
onBluetoothDeviceFound当搜索到一个设备时的事件,在此可用过滤目标设备
getConnectedBluetoothDevices获取已连接的设备
createBLEConnection创建BLE连接
closeBLEConnection关闭BLE连接
getBLEDeviceServices获取设备的服务列表,每个蓝牙设备都有一些服务
getBLEDeviceCharacteristics获取蓝牙设备某个服务的特征值列表
readBLECharacteristicValue读取低功耗蓝牙设备的特征值的二进制数据值
writeBLECharacteristicValue向蓝牙设备写入数据
notifyBLECharacteristicValueChange开启蓝牙设备notify提醒功能,只有开启这个功能才能接受到蓝牙推送的数据
onBLEConnectionStateChange监听蓝牙设备错误事件,包括异常断开等等
onBLECharacteristicValueChange监听蓝牙推送的数据,也就是notify数据

4. 主要流程

蓝牙通信的一个正常流程是下面的图示
1508314916535_7138_1508314940423.png
(1) 开启蓝牙:调用openBluetoothAdapter来开启和初始化蓝牙,这个时候可以根据状态判断用户设备是否支持蓝牙
(2) 检查蓝牙状态:调用getBluetoothAdapterState来检查蓝牙是否开启,如果没有开启可以在这里提醒用户开启蓝牙,并且能在开启后自动启动下面的步骤
这里有一个坑:IOS里面蓝牙状态变化以后不能马上开始搜索,否则会搜索不到设备,必须要等待2秒以上。
  1. function connect(){
  2.   wx.openBluetoothAdapter({
  3.     success: function (res) {
  4.     },
  5.     fail(res){
  6.     },
  7.     complete(res){
  8.       wx.onBluetoothAdapterStateChange(function(res) {
  9.         if(res.available){
  10.           setTimeout(function(){
  11.             connect();
  12.           },2000);
  13.         }
  14.       })
  15.    //开始搜索  
  16.     }
  17.   })
  18. }
(3) 搜索设备:startBluetoothDevicesDiscovery开始搜索设备,当发现一个设备会触发onBluetoothDeviceFound事件,首先看下标准API
1508314941142_8213_1508314965035.png
由于IOS无法获取Mac地址所以这里需要区分两个场景
a) 安卓:安卓下可以根据Mac地址来搜索设备,或者跳过此步直接连接到设备。当搜索到一个设备以后,可以在onBluetoothDeviceFound事件回调中判断当前设备的deviceID是否为指定的Mac地址
  1. let mac = "XXXXXXXXXXXXXXX";
  2. wx.startBluetoothDevicesDiscovery({
  3.   services:[],
  4.   success(res) {
  5.     wx.onBluetoothDeviceFound(res=>{
  6.         let devices = res.devices;
  7.         for(let i = 0;i<devices.length;i++){
  8.           if(devices[i].deviceId = mac){
  9.             console.log("find");
  10.             wx.stopBluetoothDevicesDiscovery({
  11.               success:res=>console.log(res),
  12.               fail:res=>console.log(res),
  13.             })
  14.           }
  15.         }
  16.     });
  17.   },
  18.   fail(res){
  19.       console.log(res);
  20.   }
  21. })
b) IOS:IOS下获取设备Mac地址的方法已经被屏蔽,所以不存在mac地址,此时只能通过其他方式来判断,比如在蓝牙设备advertisData字段添加一些特别的信息来判断等等,可以转字符串来判断,也可以直接用二进制来判断。
  1. let id = "XXXXXXXXXXXXXXX",//设备标识符
  2.     deviceId = "";
  3. wx.startBluetoothDevicesDiscovery({
  4.   services:[],
  5.   success(res) {
  6.     wx.onBluetoothDeviceFound(res=>{
  7.         var devices = res.devices;
  8.         for(let i = 0;i<devices.length;i++){
  9.           let advertisData = devices[i].advertisData;
  10.           var data = arrayBufferToHexString(advertisData);//二进制转字符串
  11.           if (!!data && data.indexOf(id) > -1) {
  12.               console.log("find");
  13.         deviceId = devices[i].deviceId;
  14.           }
  15.         }
  16.     });   
  17.   },
  18.   fail(res){
  19.       console.log(res);
  20.   }
  21. });
  22. function arrayBufferToHexString(buffer) {
  23.   let bufferType = Object.prototype.toString.call(buffer)
  24.   if (buffer != '[object ArrayBuffer]') {
  25.     return
  26.   }
  27.   let dataView = new DataView(buffer)
  28.   var hexStr = '';
  29.   for (var i = 0; i < dataView.byteLength; i++) {
  30.     var str = dataView.getUint8(i);
  31.     var hex = (str & 0xff).toString(16);
  32.     hex = (hex.length === 1) ? '0' + hex : hex;
  33.     hexStr += hex;
  34.   }
  35. ****
  36.   return hexStr.toUpperCase();
  37. }
这里需要注意的是:如果知道mac地址在安卓下可以直接略过搜索过程直接连接,如果不知道mac地址或者是IOS场景下需要开启搜索,由于搜索是比较消耗资源的动作,所以发现目标设备以后一定要及时关闭搜索,以节省系统消耗。
(4) 搜索到设备以后,就是连接设备createBLEConnection:
(5) 连接成功以后就开始查询设备的服务列表:getBLEDeviceServices,然后根据目标服务ID或者标识符来找到指定的服务ID
  1. let deviceId = "XXXX";
  2. wx.getBLEDeviceServices({
  3.   deviceId: device_id,
  4.   success: function (res) {        
  5.     let service_id = "";
  6.     for(let i = 0;i<res.services.length;i++){
  7.       if(services[i].uuid.toUpperCase().indexOf("TEST") != -1){
  8.         service_id = services[i].uuid;
  9.         break;
  10.       }
  11.     }
  12.     return service_id;
  13.   },
  14.   fail(res){
  15.     console.log(res);
  16.   }
  17. })
这里有个坑的地方:如果是安卓下如果你知道设备的服务ID,你可以省去getBLEDeviceServices的过程,但是IOS下即使你知道了服务ID,也不能省去getBLEDeviceServices的过程,这是小程序里面需要注意的一点。
(6) 获取服务特征值:每个服务都包含了一组特征值用来描述服务的一些属性,比如是否可读,是否可写,是否可以开启notify通知等等,当你跟蓝牙通信时需要这些特征值ID来传递数据。
getBLEDeviceCharacteristics方法返回了res参数包含了以下属性:
1508315210401_5391_1508315234216.png
characteristics包含了一组特征值列表
1508315221637_8594_1508315245508.png
通过遍历特征值对象来获取想要的特征值ID
  1. wx.getBLEDeviceCharacteristics({
  2.   deviceId: device_id,
  3.   serviceId: service_id,
  4.   success: function (res) {
  5.     let notify_id,write_id,read_id;
  6.     for (let i = 0; i < res.characteristics.length; i++) {
  7.       let charc = res.characteristics[i];
  8.       if (charc.properties.notify) {
  9.         notify_id = charc.uuid;           
  10.       }
  11.       if(charc.properties.write){
  12.         write_id = charc.uuid;
  13.       }
  14.       if(charc.properties.write){
  15.         read_id = charc.uuid;
  16.       }
  17.     }
  18.   },
  19.   fail(res){
  20.     console.log(res);
  21.   }
  22. })
这个例子就通过搜索特征值取到了 notify特征值ID,写ID和读取ID
(7) 获取特征值ID以后就可以开启notify通知模式,同时开启监听特征值变化消息
1508315245679_1026_1508315269498.png
  1. wx.notifyBLECharacteristicValueChange({
  2.   state: true,
  3.   deviceId: device_id,
  4.   serviceId: service_id,
  5.   characteristicId:notify_id,
  6.   complete(res) {
  7.     wx.onBLECharacteristicValueChange(function (res) {
  8.       console.log(arrayBufferToHexString(res.value));
  9.     })
  10.   },
  11.   fail(res){
  12.     console.log(res);
  13.   }
  14. })
(8) 一切都准备好以后,就可以开始给蓝牙发送消息,一旦蓝牙有响应,就可以在onBLECharacteristicValueChange事件中得到消息并打印出来。
这里面有个坑:开启notify以后并不能马上发送消息,蓝牙设备有个准备的过程,需要在setTimeout中延迟1秒以上才能发送,否则会发送失败
  1. let buf = hexStringToArrayBuffer("test");
  2. wx.writeBLECharacteristicValue({
  3.   deviceId: device_id,
  4.   serviceId: service_id,
  5.   characteristicId:write_id,
  6.   value: buf,
  7.   success: function (res) {
  8.     console.log(buf);
  9.   },
  10.   fail(res){
  11.     console.log(res);
  12.   }
  13. })
  14. function hexStringToArrayBuffer(str) {
  15.   if (!str) {
  16.     return new ArrayBuffer(0);
  17.   }
  18.   var buffer = new ArrayBuffer(str.length);
  19.   let dataView = new DataView(buffer)
  20.   let ind = 0;
  21.   for (var i = 0, len = str.length; i < len; i += 2) {
  22.     let code = parseInt(str.substr(i, 2), 16)
  23.     dataView.setUint8(ind, code)
  24.     ind++
  25.   }
  26.   return buffer;
  27. }
(9) 所有都通信完毕后可以断开连接:
  1. wx.closeBLEConnection({
  2.   deviceId: device_id,
  3.   success(res) {
  4.     console.log(res)
  5.   },
  6.   fail(res) {
  7.     console.log(res)
  8.   }
  9. })
  10. wx.closeBluetoothAdapter({
  11.   success: function (res) {
  12.     console.log(res)
  13.   }
  14. })
5. 完整例子


这里为了简洁,把fail等异常处理已经省去,主要流程就是设置设备ID和服务ID的过滤值,在开启notify之后写入测试消息,然后监听蓝牙发送过来的消息,整个过程采用简化处理,没有使用事件通信来驱动,仅做参考。
  1. let blueApi = {
  2.   cfg:{
  3.     device_info:"AAA",
  4.     server_info:"BBB",
  5.     onOpenNotify:null
  6.   },
  7.   blue_data:{
  8.     device_id:"",
  9.     service_id:"",
  10.     write_id:""
  11.   },
  12.   setCfg(obj){
  13.     this.cfg = Object.assign({},this.cfg,obj);
  14.   },
  15.   connect(){
  16.     if(!wx.openBluetoothAdapter){
  17.       this.showError("当前微信版本过低,无法使用该功能,请升级到最新微信版本后重试。");
  18.       return;
  19.     }
  20.     var _this = this;
  21.     wx.openBluetoothAdapter({
  22.       success: function (res) {
  23.       },
  24.       complete(res){
  25.         wx.onBluetoothAdapterStateChange(function(res) {
  26.           if(res.available){
  27.             setTimeout(function(){
  28.               _this.connect();
  29.             },2000);
  30.           }
  31.         })
  32.         _this.getBlueState();        
  33.       }
  34.     })
  35.   },
  36.   //发送消息
  37.   sendMsg(msg,toArrayBuf = true) {
  38.     let _this = this;
  39.     let buf = toArrayBuf ? this.hexStringToArrayBuffer(msg) : msg;
  40.     wx.writeBLECharacteristicValue({
  41.       deviceId: _this.blue_data.device_id,
  42.       serviceId: _this.blue_data.service_id,
  43.       characteristicId:_this.blue_data.write_id,
  44.       value: buf,
  45.       success: function (res) {
  46.         console.log(res);
  47.       }
  48.     })
  49.   },
  50.   //监听消息
  51.   onNotifyChange(callback){
  52.     var _this = this;
  53.     wx.onBLECharacteristicValueChange(function (res) {
  54.       let msg = _this.arrayBufferToHexString(res.value);
  55.       callback && callback(msg);
  56.       console.log(msg);
  57.     })
  58.   },
  59.   disconnect(){
  60.     var _this = this;
  61.     wx.closeBLEConnection({
  62.       deviceId: _this.blue_data.device_id,
  63.       success(res) {
  64.       }
  65.     })
  66.   },
  67.   /*事件通信模块*/
  68.   /*连接设备模块*/
  69.   getBlueState() {
  70.     var _this = this;
  71.     if(_this.blue_data.device_id != ""){
  72.       _this.connectDevice();
  73.       return;
  74.     }
  75.     wx.getBluetoothAdapterState({
  76.       success: function (res) {
  77.         if (!!res && res.available) {//蓝牙可用   
  78.           _this.startSearch();
  79.         }
  80.       }
  81.     })
  82.   },
  83.   startSearch(){
  84.     var _this = this;
  85.     wx.startBluetoothDevicesDiscovery({
  86.       services:[],
  87.       success(res) {
  88.         wx.onBluetoothDeviceFound(function(res){
  89.           var device = _this.filterDevice(res.devices);
  90.           if(device){
  91.             _this.blue_data.device_id = device.deviceId;
  92.             _this.stopSearch();
  93.             _this.connectDevice();
  94.           }
  95.         });
  96.       }
  97.     })
  98.   },
  99.   //连接到设备
  100.   connectDevice(){
  101.     var _this = this;
  102.     wx.createBLEConnection({
  103.       deviceId: _this.blue_data.device_id,
  104.       success(res) {
  105.         _this.getDeviceService();
  106.       }
  107.     })
  108.   },
  109.   //搜索设备服务
  110.   getDeviceService(){
  111.     var _this = this;
  112.     wx.getBLEDeviceServices({
  113.       deviceId: _this.blue_data.device_id,
  114.       success: function (res) {
  115.         var service_id = _this.filterService(res.services);
  116.         if(service_id != ""){
  117.           _this.blue_data.service_id = service_id;
  118.           _this.getDeviceCharacter();
  119.         }
  120.       }
  121.     })
  122.   },
  123.   //获取连接设备的所有特征值  
  124.   getDeviceCharacter() {
  125.     let _this = this;
  126.     wx.getBLEDeviceCharacteristics({
  127.       deviceId: _this.blue_data.device_id,
  128.       serviceId: _this.blue_data.service_id,
  129.       success: function (res) {
  130.         let notify_id,write_id,read_id;
  131.         for (let i = 0; i < res.characteristics.length; i++) {
  132.           let charc = res.characteristics[i];
  133.           if (charc.properties.notify) {
  134.             notify_id = charc.uuid;           
  135.           }
  136.           if(charc.properties.write){
  137.             write_id = charc.uuid;
  138.           }
  139.           if(charc.properties.write){
  140.             read_id = charc.uuid;
  141.           }
  142.         }         
  143.         if(notify_id != null && write_id != null){
  144.           _this.blue_data.notify_id = notify_id;
  145.           _this.blue_data.write_id = write_id;
  146.           _this.blue_data.read_id = read_id;
  147.           _this.openNotify();
  148.         }
  149.       }
  150.     })
  151.   },
  152.   openNotify(){
  153.     var _this = this;
  154.     wx.notifyBLECharacteristicValueChange({
  155.         state: true,
  156.         deviceId: _this.blue_data.device_id,
  157.         serviceId: _this.blue_data.service_id,
  158.         characteristicId: _this.blue_data.notify_id,
  159.         complete(res) {
  160.           setTimeout(function(){
  161.             _this.onOpenNotify && _this.onOpenNotify();
  162.           },1000);
  163.           _this.onNotifyChange();//接受消息
  164.         }
  165.     })
  166.   },
  167.   /*连接设备模块*/
  168.   /*其他辅助模块*/
  169.   //停止搜索周边设备  
  170.   stopSearch() {
  171.     var _this = this;
  172.     wx.stopBluetoothDevicesDiscovery({
  173.       success: function (res) {
  174.       }
  175.     })
  176.   },  
  177.   arrayBufferToHexString(buffer) {
  178.     let bufferType = Object.prototype.toString.call(buffer)
  179.     if (buffer != '[object ArrayBuffer]') {
  180.       return
  181.     }
  182.     let dataView = new DataView(buffer)
  183.     var hexStr = '';
  184.     for (var i = 0; i < dataView.byteLength; i++) {
  185.       var str = dataView.getUint8(i);
  186.       var hex = (str & 0xff).toString(16);
  187.       hex = (hex.length === 1) ? '0' + hex : hex;
  188.       hexStr += hex;
  189.     }
  190.     return hexStr.toUpperCase();
  191.   },
  192.   hexStringToArrayBuffer(str) {
  193.     if (!str) {
  194.       return new ArrayBuffer(0);
  195.     }
  196.     var buffer = new ArrayBuffer(str.length);
  197.     let dataView = new DataView(buffer)
  198.     let ind = 0;
  199.     for (var i = 0, len = str.length; i < len; i += 2) {
  200.       let code = parseInt(str.substr(i, 2), 16)
  201.       dataView.setUint8(ind, code)
  202.       ind++
  203.     }
  204.     return buffer;
  205.   }
  206.   //过滤目标设备
  207.   filterDevice(device){
  208.     var data = blueApi.arrayBufferToHexString(device.advertisData);
  209.     if (data && data.indexOf(this.device_info.substr(4).toUpperCase()) > -1) {
  210.         var obj = { name: device.name, deviceId: device.deviceId }
  211.         return obj
  212.     }
  213.     else{
  214.       return null;
  215.     }
  216.   },
  217.   //过滤主服务
  218.   filterService(services){
  219.     let service_id = "";
  220.     for(let i = 0;i<services.length;i++){
  221.       if(services[i].uuid.toUpperCase().indexOf(this.server_info) != -1){
  222.         service_id = services[i].uuid;
  223.         break;
  224.       }
  225.     }
  226.     return service_id;
  227.   }
  228.   /*其他辅助模块*/
  229. }
  230. blueApi.setCfg({  
  231.     device_info:"AAA",
  232.     server_info:"BBB",
  233.     onOpenNotify:function(){
  234.       blueApi.sendMsg("test");
  235.     }
  236. })
  237. blueApi.connect();
  238. blueApi.onNotifyChange(function(msg){
  239.   console.log(msg);
  240. })
6. 跳坑总结

(1) 等待响应:很多情况下需要等待设备响应,尤其在IOS环境下,比如
监听到蓝牙开启后,不能马上开始搜索,需要等待2秒
开启notify以后,不能马上发送消息,需要等待1秒
(2) Mac和UUID:安卓的mac地址是可以获取到的所以设备的ID是固定的,但是IOS是获取不到MAC地址的,只能获取设备的UUID,而且是动态的,所以需要使用其他方法来查询。
(3) IOS下只有搜索可以省略,如果你知道了设备的ID,服务ID和各种特征值ID,在安卓下可以直接连接,然后发送消息,省去搜索设备,搜索服务和搜索特征值的过程,但是在IOS下,只能指定设备ID连接,后面的过程是不能省略的。
(4) 监听到的消息要进行过滤处理,有些设备会抽风一样的发送同样的消息,需要在处理逻辑里面去重。
(5) 操作完成后要及时关闭连接,同时也要关闭蓝牙设备,否则安卓下再次进入会搜索不到设备除非关闭小程序进程再进才可以,IOS不受影响。
  1. wx.closeBLEConnection({
  2.       deviceId: _this.blue_data.device_id,
  3.       success(res) {
  4.       },
  5.       fail(res) {
  6.       }
  7.     })
  8.   wx.closeBluetoothAdapter({
  9.       success(res){
  10.       },
  11.       fail(res){
  12.       }
  13.     })
除了以上的常见问题,你还需要处理很多异常情况,比如蓝牙中途关闭,网络断开,GPS未开启等等场景,总之和硬件设备打交道跟纯UI交互还是有很大的差别的。

此文已由作者授权腾讯云技术社区发布,转载请注明文章出处
原文链接:https://cloud.tencent.com/community/article/827097