">
当前位置:   article > 正文

蓝牙BLE(BlueTooth BLE)入门及爬坑指南_package="com.kaka.bluetoothble">

package="com.kaka.bluetoothble">

前言

最近比较忙,两三周没有更新简书了,公司正好在做蓝牙BLE的项目,本来觉得挺简单的东西从网上找了个框架,就咔咔地开始搞,搞完以后才发现里面还有不少坑呢,故而写一篇蓝牙BLE入门及爬坑指南,旨在帮助刚入蓝牙BLE的小伙伴们少走弯路。

注:本文所有的具体代码实现都在文章最后的github

经典蓝牙和蓝牙BLE的区别

说起蓝牙,大家一定听过蓝牙1.0 2.0 3.0 4.0,不过现在已经不再用版本号区分蓝牙了,蓝牙1.0~3.0都是经典蓝牙,在塞班系统就已经开始使用了,确实很经典。有些人一直认为蓝牙4.0就是蓝牙BLE,其实是错误的。因为4.0是双模的,既包括经典蓝牙又包括低能耗蓝牙。经典蓝牙和蓝牙BLE虽然都是蓝牙,但其实还是存在很大区别的。蓝牙BLE相比于经典蓝牙的优点是搜索、连接的速度更快,关键就是BLE(Bluetooth Low Energy)低能耗,缺点呢就是传输的速度慢,传输的数据量也很小,每次只有20个字节。但是蓝牙BLE因为其低能耗的优点,在智能穿戴设备和车载系统上的应用越来越广泛,因此,蓝牙BLE开发已经是我们Android开发不得不去掌握的一门技术了。

蓝牙BLE的简介

蓝牙BLE是在Android4.3系统及以上引入的,但是仅作为中央设备,直到5.0以后才可以既作为中央设备又可以作为周边设备。也就是5.0系统以后,可以手机控制手机了,不过绝大多数的场景手机还是作为中央设备去控制其他的周边设备。Android BLE 使用的蓝牙协议是 GATT 协议。关于这个GATT协议,我就不详细给大家介绍了,放上个链接,感兴趣的可以看一下http://blog.chinaunix.net/uid-21411227-id-5750680.html

Service和Characteristic

 

 

Service是服务,Characteristic是特征值。蓝牙里面有多个Service,一个Service里面又包括多个Characteristic,具体的关系可以看图

service和characteristic的关系

 

图中画的比较少,实际上一个蓝牙协议里面包含的Service和Characteristic是比较多的 ,这时候你可能会问,这么多的同名属性用什么来区分呢?答案就是UUID,每个Service或者Characteristic都有一个 128 bit 的UUID来标识。Service可以理解为一个功能集合,而Characteristic比较重要,蓝牙设备正是通过Characteristic来进行设备间的交互的(如读、写、订阅等操作)。

小结

经典蓝牙和蓝牙BLE虽然都是蓝牙,但是在连接和数据传递上还是存在很大的区别,而蓝牙BLE依靠着其低能耗的特点,逐渐在智能穿戴设备上占有一席之地。蓝牙BLE基于GATT协议传输数据,提供了Serivice和Characteristic进行设备之间的通讯。以上,就是蓝牙BLE的基本概念,下面开始蓝牙BLE的正式开发!

蓝牙BLE正确开发姿势(本文重点)

第一步:声明蓝牙BLE权限

 

  1. <!--声明蓝牙权限-->
  2. <uses-permission android:name="android.permission.BLUETOOTH" />
  3. <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
  4. <uses-permission android:name="android.permission.BLUETOOTH_PRIVILEGED" />
  5. <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
  6. <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />

Android6.0系统以上开启蓝牙还需要定位权限,定位权限属于危险权限,需要动态申请,笔者实现的方法是使用了RxPerssion动态库。

 

  1. /**
  2. * 检查权限
  3. */
  4. private void checkPermissions() {
  5. RxPermissions rxPermissions = new RxPermissions(MainActivity.this);
  6. rxPermissions.request(android.Manifest.permission.ACCESS_FINE_LOCATION)
  7. .subscribe(new io.reactivex.functions.Consumer<Boolean>() {
  8. @Override
  9. public void accept(Boolean aBoolean) throws Exception {
  10. if (aBoolean) {
  11. // 用户已经同意该权限
  12. scanDevice();
  13. } else {
  14. // 用户拒绝了该权限,并且选中『不再询问』
  15. ToastUtils.showLong("用户开启权限后才能使用");
  16. }
  17. }
  18. });
  19. }

第二步:连接蓝牙前需要初始化的工作

 

  1. mBluetoothManager= (BluetoothManager) getSystemService(BLUETOOTH_SERVICE);
  2. mBluetoothAdapter=mBluetoothManager.getAdapter();
  3. if (mBluetoothAdapter==null||!mBluetoothAdapter.isEnabled()){
  4. Intent intent=new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
  5. startActivityForResult(intent,0);
  6. }

拿到BluetoothManager,在通过BluetoothManager.getAdapter()拿到BluetoothAdapter,然后判断一下蓝牙是否打开,没打开的话Intent隐式调用打开系统开启蓝牙界面。

第三步:扫描设备

 

  1. /**
  2. * 开始扫描 10秒后自动停止
  3. * */
  4. private void scanDevice(){
  5. tvSerBindStatus.setText("正在搜索");
  6. isScaning=true;
  7. pbSearchBle.setVisibility(View.VISIBLE);
  8. mBluetoothAdapter.startLeScan(scanCallback);
  9. new Handler().postDelayed(new Runnable() {
  10. @Override
  11. public void run() {
  12. //结束扫描
  13. mBluetoothAdapter.stopLeScan(scanCallback);
  14. runOnUiThread(new Runnable() {
  15. @Override
  16. public void run() {
  17. isScaning=false;
  18. pbSearchBle.setVisibility(View.GONE);
  19. }
  20. });
  21. }
  22. },10000);
  23. }

蓝牙扫描如果不停止,会持续扫描,很消耗资源,一般都是开启10秒左右停止

 

  1. BluetoothAdapter.LeScanCallback scanCallback=new BluetoothAdapter.LeScanCallback() {
  2. @Override
  3. public void onLeScan(BluetoothDevice device, int rssi, byte[] scanRecord) {
  4. Log.e(TAG, "run: scanning...");
  5. if (!mDatas.contains(device)){
  6. mDatas.add(device);
  7. mRssis.add(rssi);
  8. mAdapter.notifyDataSetChanged();
  9. }
  10. }
  11. };

这里的scanCallback是上一段代码里mBluetoothAdapter.startLeScan(scanCallback)里面的对象,其中onLeScan(BluetoothDevice device, int rssi, byte[] scanRecord)里面的参数都很直观,device是设备对象,rssi扫描到的设备强度,scanRecord是扫面记录,没什么卵用。 扫描过的设备仍然会被再次扫描到,因此要加入设备列表之前可以判断一下,如果已经加入过了就不必再次添加了。
看一下搜索的效果图吧

 

搜索效果图

第三步:连接设备

 

  1. BluetoothDevice bluetoothDevice= mDatas.get(position);
  2. //连接设备
  3. tvSerBindStatus.setText("连接中");
  4. if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
  5. mBluetoothGatt = bluetoothDevice.connectGatt(MainActivity.this,
  6. true, gattCallback, TRANSPORT_LE);
  7. } else {
  8. mBluetoothGatt = bluetoothDevice.connectGatt(MainActivity.this,
  9. true, gattCallback);
  10. }

连接这里大家可能已经发现了,判断了一下手机系统,6.0及以上连接设备的方法是bluetoothDevice.connectGatt(MainActivity.this,true, gattCallback, TRANSPORT_LE)。这里就是我遇见的第一个大坑了,我的手机是8.0的系统使用
bluetoothDevice.connectGatt(MainActivity.this, true, gattCallback);总是连接失败,提示status返回133,用了各种方法都不行,后台一查才发现6.0及以上系统的手机要使用bluetoothDevice.connectGatt(MainActivity.this,true, gattCallback, TRANSPORT_LE),其中TRANSPORT_LE参数是设置传输层模式。传输层模式有三种TRANSPORT_AUTO 、TRANSPORT_BREDR 和TRANSPORT_LE。如果不传默认TRANSPORT_AUTO,6.0系统及以上需要使用TRANSPORT_LE这种传输模式,具体为啥,我也不知道,我猜是因为Android6.0及以上系统重新定义了蓝牙BLE的传输模式必须使用TRANSPORT_LE这种方式吧。bluetoothDevice.connectGatt()方法返回的对象BluetoothGatt,这个BluetoothGatt对象非常重要,甚至可以说是最重要的。一般都是单独声明成全局变量来使用的,因为我们设备的读、写和订阅等操作都需要用到这个对象。

 

  1. private BluetoothGattCallback gattCallback=new BluetoothGattCallback() {
  2. /**
  3. * 断开或连接 状态发生变化时调用
  4. * */
  5. @Override
  6. public void onConnectionStateChange(BluetoothGatt gatt, int status, int newState) {
  7. super.onConnectionStateChange(gatt, status, newState);
  8. Log.e(TAG,"onConnectionStateChange()");
  9. if (status==BluetoothGatt.GATT_SUCCESS){
  10. //连接成功
  11. if (newState== BluetoothGatt.STATE_CONNECTED){
  12. Log.e(TAG,"连接成功");
  13. //发现服务
  14. gatt.discoverServices();
  15. }
  16. }else{
  17. //连接失败
  18. Log.e(TAG,"失败=="+status);
  19. mBluetoothGatt.close();
  20. isConnecting=false;
  21. }
  22. }
  23. /**
  24. * 发现设备(真正建立连接)
  25. * */
  26. @Override
  27. public void onServicesDiscovered(BluetoothGatt gatt, int status) {
  28. super.onServicesDiscovered(gatt, status);
  29. //直到这里才是真正建立了可通信的连接
  30. isConnecting=false;
  31. Log.e(TAG,"onServicesDiscovered()---建立连接");
  32. //获取初始化服务和特征值
  33. initServiceAndChara();
  34. //订阅通知
  35. mBluetoothGatt.setCharacteristicNotification(mBluetoothGatt
  36. .getService(notify_UUID_service).getCharacteristic(notify_UUID_chara),true);
  37. runOnUiThread(new Runnable() {
  38. @Override
  39. public void run() {
  40. bleListView.setVisibility(View.GONE);
  41. operaView.setVisibility(View.VISIBLE);
  42. tvSerBindStatus.setText("已连接");
  43. }
  44. });
  45. }
  46. /**
  47. * 读操作的回调
  48. * */
  49. @Override
  50. public void onCharacteristicRead(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic, int status) {
  51. super.onCharacteristicRead(gatt, characteristic, status);
  52. Log.e(TAG,"onCharacteristicRead()");
  53. }
  54. /**
  55. * 写操作的回调
  56. * */
  57. @Override
  58. public void onCharacteristicWrite(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic, int status) {
  59. super.onCharacteristicWrite(gatt, characteristic, status);
  60. Log.e(TAG,"onCharacteristicWrite() status="+status+",value="+HexUtil.encodeHexStr(characteristic.getValue()));
  61. }
  62. /**
  63. * 接收到硬件返回的数据
  64. * */
  65. @Override
  66. public void onCharacteristicChanged(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic) {
  67. super.onCharacteristicChanged(gatt, characteristic);
  68. Log.e(TAG,"onCharacteristicChanged()"+characteristic.getValue());
  69. final byte[] data=characteristic.getValue();
  70. runOnUiThread(new Runnable() {
  71. @Override
  72. public void run() {
  73. addText(tvResponse,bytes2hex(data));
  74. }
  75. });
  76. }
  77. };

这一段是连接的回调 这里我只重写了几个比较重要的方法,每个方法都有具体的注释,需要强调的是有些同学重复连接会报133连接失败,这个调用一下mBluetoothGatt.close()就可以解决,还有要注意的就是回调里面的方法不要做耗时的操作,也不要在回调方法里面更新UI,这样有可能会阻塞线程。

第四步:发现服务

 

  1. /**
  2. * 发现设备(真正建立连接)
  3. * */
  4. @Override
  5. public void onServicesDiscovered(BluetoothGatt gatt, int status) {
  6. super.onServicesDiscovered(gatt, status);
  7. //直到这里才是真正建立了可通信的连接
  8. isConnecting=false;
  9. Log.e(TAG,"onServicesDiscovered()---建立连接");
  10. //获取初始化服务和特征值
  11. initServiceAndChara();
  12. //订阅通知
  13. mBluetoothGatt.setCharacteristicNotification(mBluetoothGatt
  14. .getService(notify_UUID_service).getCharacteristic(notify_UUID_chara),true);
  15. runOnUiThread(new Runnable() {
  16. @Override
  17. public void run() {
  18. bleListView.setVisibility(View.GONE);
  19. operaView.setVisibility(View.VISIBLE);
  20. tvSerBindStatus.setText("已连接");
  21. }
  22. });
  23. }

直到这里才是建立了真正可通信的连接,下一步就可以进行读写订阅等操作,之前文章中有提到要通过Service和Characteristic特征值来操作,但是如果获取到对应的服务和特征值呢?一般硬件开发工程师会定义好UUID,通知到我们,这个时候我们只需要调用下面的方法就能拿到Service和Characteristic

 

  1. //write_UUID_service和write_UUID_chara是硬件工程师告诉我们的
  2. BluetoothGattService service=mBluetoothGatt.getService(write_UUID_service);
  3. BluetoothGattCharacteristic charaWrite=service.getCharacteristic(write_UUID_chara);

当然也会比较坑爹的,就是硬件工程师居然不知道Service和Characteristic的UUID是啥(没错,我就遇见了),这个时候也不要慌,因为我们可以通过Android拿得到对应UUID.

 

  1. private void initServiceAndChara(){
  2. List<BluetoothGattService> bluetoothGattServices= mBluetoothGatt.getServices();
  3. for (BluetoothGattService bluetoothGattService:bluetoothGattServices){
  4. List<BluetoothGattCharacteristic> characteristics=bluetoothGattService.getCharacteristics();
  5. for (BluetoothGattCharacteristic characteristic:characteristics){
  6. int charaProp = characteristic.getProperties();
  7. if ((charaProp & BluetoothGattCharacteristic.PROPERTY_READ) > 0) {
  8. read_UUID_chara=characteristic.getUuid();
  9. read_UUID_service=bluetoothGattService.getUuid();
  10. Log.e(TAG,"read_chara="+read_UUID_chara+"----read_service="+read_UUID_service);
  11. }
  12. if ((charaProp & BluetoothGattCharacteristic.PROPERTY_WRITE) > 0) {
  13. write_UUID_chara=characteristic.getUuid();
  14. write_UUID_service=bluetoothGattService.getUuid();
  15. Log.e(TAG,"write_chara="+write_UUID_chara+"----write_service="+write_UUID_service);
  16. }
  17. if ((charaProp & BluetoothGattCharacteristic.PROPERTY_WRITE_NO_RESPONSE) > 0) {
  18. write_UUID_chara=characteristic.getUuid();
  19. write_UUID_service=bluetoothGattService.getUuid();
  20. Log.e(TAG,"write_chara="+write_UUID_chara+"----write_service="+write_UUID_service);
  21. }
  22. if ((charaProp & BluetoothGattCharacteristic.PROPERTY_NOTIFY) > 0) {
  23. notify_UUID_chara=characteristic.getUuid();
  24. notify_UUID_service=bluetoothGattService.getUuid();
  25. Log.e(TAG,"notify_chara="+notify_UUID_chara+"----notify_service="+notify_UUID_service);
  26. }
  27. if ((charaProp & BluetoothGattCharacteristic.PROPERTY_INDICATE) > 0) {
  28. indicate_UUID_chara=characteristic.getUuid();
  29. indicate_UUID_service=bluetoothGattService.getUuid();
  30. Log.e(TAG,"indicate_chara="+indicate_UUID_chara+"----indicate_service="+indicate_UUID_service);
  31. }
  32. }
  33. }
  34. }

BluetoothGattCharacteristic.PROPERTY_READ:对应的就是读取数据
BluetoothGattCharacteristic.PROPERTY_WRITE和BluetoothGattCharacteristic.PROPERTY_WRITE_NO_RESPONSE:都是写入,区别就是据说PROPERTY_WRITE_NO_RESPONSE写入效率更高,而NO_RESPONSE没有响应,我也没弄懂这个响应指的是什么响应,我用PROPERTY_WRITE_NO_RESPONSE写入,订阅中依然得到了回应,这里有知道的朋友可以告诉一下笔者。
PROPERTY_NOTIFY和PROPERTY_INDICATE:这里都是订阅的方法,区别就是PROPERTY_INDICATE一定能接收到订阅回调,一般用来接收一些比较重要的必须的回调,但是不能太频繁;而PROPERTY_NOTIFY不一定能百分之百接收到回调,可以频繁接收,这个一般也是使用得比较多的订阅方式。

读取数据

 

  1. private void readData() {
  2. BluetoothGattCharacteristic characteristic=mBluetoothGatt.getService(read_UUID_service)
  3. .getCharacteristic(read_UUID_chara);
  4. mBluetoothGatt.readCharacteristic(characteristic);
  5. }

读取数据用得比较少,我也就不重点介绍了,一般我们都是先订阅,再写入,在订阅中回调数据进行交互。

写入数据

 

  1. private void writeData(){
  2. BluetoothGattService service=mBluetoothGatt.getService(write_UUID_service);
  3. BluetoothGattCharacteristic charaWrite=service.getCharacteristic(write_UUID_chara);
  4. byte[] data=HexUtil.hexStringToBytes(hex);
  5. if (data.length>20){//数据大于个字节 分批次写入
  6. Log.e(TAG, "writeData: length="+data.length);
  7. int num=0;
  8. if (data.length%20!=0){
  9. num=data.length/20+1;
  10. }else{
  11. num=data.length/20;
  12. }
  13. for (int i=0;i<num;i++){
  14. byte[] tempArr;
  15. if (i==num-1){
  16. tempArr=new byte[data.length-i*20];
  17. System.arraycopy(data,i*20,tempArr,0,data.length-i*20);
  18. }else{
  19. tempArr=new byte[20];
  20. System.arraycopy(data,i*20,tempArr,0,20);
  21. }
  22. charaWrite.setValue(tempArr);
  23. mBluetoothGatt.writeCharacteristic(charaWrite);
  24. }
  25. }else{
  26. charaWrite.setValue(data);
  27. mBluetoothGatt.writeCharacteristic(charaWrite);
  28. }
  29. }

这里写入数据需要说一下,首先拿到写入的BluetoothGattService和BluetoothGattCharacteristic对象,把要写入的内容转成16进制的字节(蓝牙BLE规定的数据格式),然后要判断一下字节大小,如果大于20个字节就要分批次写入了,因为GATT协议规定蓝牙BLE每次传输的有效字节不能超过20个,最后通过BluetoothGattCharacteristic.setValue(data); mBluetoothGatt.writeCharacteristic(BluetoothGattCharacteristic);就可以完成写入了。写入成功了会回调onCharacteristicWrite方法

 

  1. /**
  2. * 写操作的回调
  3. * */
  4. @Override
  5. public void onCharacteristicWrite(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic, int status) {
  6. super.onCharacteristicWrite(gatt, characteristic, status);
  7. Log.e(TAG,"onCharacteristicWrite() status="+status+",value="+HexUtil.encodeHexStr(characteristic.getValue()));
  8. }

订阅回调

 

  1. //订阅通知
  2. mBluetoothGatt.setCharacteristicNotification(mBluetoothGatt
  3. .getService(notify_UUID_service).getCharacteristic(notify_UUID_chara),true);

注意一定要写在写入之前,要不然就收不到写入的数据,我一般都是在发现服务之后就订阅。关于订阅收不到这里,需要注意一下,首先你写入的和订阅的Characteristic对象一定要属于同一个Service对象,另外就是保证你写入的数据没问题,否则就可能收不到订阅回调。

 

最后上一波效果图:

写入以后返回的数据


这里在EditText虽然没有显示,但其实我直接点击默认就输入7B46363941373237323532443741397D 这一串数据,实在懒得打了

总结

第一次打这么多字有点小累,总结这个地方就不多说了,这里就说点注意事项,在进行蓝牙操作的时候最好每次都延迟200ms再执行,因为蓝牙是线程安全的,当你同时执行多次操作的时候会出现busy的情况导致执行失败,所以这里建议一般都执行一步操作延时一会,这样可以保证操作的成功率,另外就是如果大家入了门以后想要快速的开发的话,建议网上找好轮子,找一个好用的,可以先自己看看实现的源码,当然最好就是自己封装一个。
最后放上我的github地址:https://github.com/kaka10xiaobang/BlueToothBLE



 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/867772
推荐阅读
相关标签
  

闽ICP备14008679号