Android BLE低功耗蓝牙开发

前言

啦啦啦在上一个项目中有用到BLE低功耗蓝牙开发,当时baidu google了很多资料,但大多数都是千篇一律,英文文档我这种渣渣又看不懂。。。总之刚开始查的很痛苦。所以要把自己的踩坑之路写下来记录下,,,或许能帮到后来人呢?


概念

这是低功耗蓝牙的官方文档,英文好的同学可以直接看看这个:https://developer.android.google.cn/guide/topics/connectivity/bluetooth-le.html

这里写图片描述

低功耗蓝牙是android4.3(API level18)之后才支持的.
一个低功耗蓝牙终端包含多个Service,而Service中又包含多个Characteristic,一个Characteristic又包含一个Value和多个Descriptor.Characteristic是手机和BLE终端交换数据的关键.
这三部分都是通过UUID来获取,UUID是他们的唯一标识.

链接

扫描的部分我们就不多说了,参考官方Demo写的很详细.主要说一说链接及发送消息等.
参考官方Demo,所有的链接等操作都是放在一个service中进行的,通过在service中发送广播来通知activity来处理相关的数据.很简单呦!我们先来看看service中都做了什么~

这是初始化蓝牙适配器的方法,在开启服务时调用.

/**
     * Initializes a reference to the local Bluetooth adapter.
     * 初始化一个蓝牙适配器   里面会判断系统版本,如果低于18则返回false(低于18不支持低功耗蓝牙)
     *
     * @return Return true if the initialization is successful.
     * 返回true表示初始化成功
     */
    public boolean initialize() {
        // For API level 18 and above, get a reference to BluetoothAdapter through
        // BluetoothManager.
        if (mBluetoothManager == null) {
            mBluetoothManager = (BluetoothManager) getSystemService(Context.BLUETOOTH_SERVICE);
            if (mBluetoothManager == null) {
                //无法初始化蓝牙管理器
                Log.e(TAG, "Unable to initialize BluetoothManager.");
                return false;
            }
        }

        mBluetoothAdapter = mBluetoothManager.getAdapter();
        if (mBluetoothAdapter == null) {
            //无法获取蓝牙适配器
            Log.e(TAG, "Unable to obtain a BluetoothAdapter.");
            return false;
        }

        return true;
    }

这是连接蓝牙设备的方法,address就是蓝牙设备的MAC地址,如果是扫描的则可以通过device.getAddress()来获取到这个address.

/**
     * Connects to the GATT server hosted on the Bluetooth LE device.
     *
     * 连接成功返回true 异步返回
     *
     * @param address The device address of the destination device.
     *
     * @return Return true if the connection is initiated successfully. The connection result
     *         is reported asynchronously through the
     *         {@code BluetoothGattCallback#onConnectionStateChange(android.bluetooth.BluetoothGatt, int, int)}
     *         callback.
     */
    public boolean connect(final String address) {
        if (mBluetoothAdapter == null || address == null) {
            //还没有初始化或者指定地址
            Log.w(TAG, "BluetoothAdapter not initialized or unspecified address.");
            return false;
        }

        // Previously connected device.  Try to reconnect.  以前连接的设备   尝试重新连接
        if (mBluetoothDeviceAddress != null && address.equals(mBluetoothDeviceAddress)
                && mBluetoothGatt != null) {
            Log.d(TAG, "Trying to use an existing mBluetoothGatt for connection.");
            if (mBluetoothGatt.connect()) {
                mConnectionState = STATE_CONNECTING;
                return true;
            } else {
                return false;
            }
        }

        //根据mac地址获取设备
        final BluetoothDevice device = mBluetoothAdapter.getRemoteDevice(address);
        //如果设备为null则表示未获取到设备
        if (device == null) {
            Log.w(TAG, "Device not found.  Unable to connect.");
            return false;
        }
        // We want to directly connect to the device, so we are setting the autoConnect
        //我们要直接连接到设备,所以我们设置自动连接
        // parameter to false.
        mBluetoothGatt = device.connectGatt(this, false, mGattCallback);
        //试图创建一个新的连接
        Log.d(TAG, "Trying to create a new connection.");
        mBluetoothDeviceAddress = address;
        mConnectionState = STATE_CONNECTING;
        return true;
    }

在调用connectGatt(context,autoConnect,callback)方法进行连接时,我们需要传入一个context,一个boolean值,该参数表示以后是否需要自动连接到该设备,最后一个是蓝牙连接的监听回调对象BluetoothGattCallback,我们需要new 出来这个对象,重写他的几个方法,如下:

蓝牙连接状态改变的回调:在连接成功之后需要调用discoverServices方法来找服务,只有找到了服务才算是真正的连接成功.

 @Override
        public void onConnectionStateChange(BluetoothGatt gatt, int status, int newState) {
            super.onConnectionStateChange(gatt, status, newState);
            if (newState == BluetoothProfile.STATE_CONNECTED) {
                mConnectionState = STATE_CONNECTING;
                //开始找服务,只有找到服务才算是真正的连接上了
                mBluetoothGatt.discoverServices();
            } else if (newState == BluetoothProfile.STATE_DISCONNECTED) {
                //发送广播通知activity连接已断开
                broadcastUpdate(ACTION_GATT_DISCONNECTED);
                mConnectionState = STATE_DISCONNECTED;
            } else {
                //发送广播通知activity连接已断开
                broadcastUpdate(ACTION_GATT_DISCONNECTED);
                mConnectionState = STATE_DISCONNECTED;
            }
        }

发现服务的回调:
在找到服务之后就是真正的连接成功了,我在这里设置了对返回数据的监听,后面具体说

@Override
        public void onServicesDiscovered(BluetoothGatt gatt, int status) {
            super.onServicesDiscovered(gatt, status);
            if (status == BluetoothGatt.GATT_SUCCESS) {
                //找到了服务,此时才是真正的连接上了设备
                mConnectionState = STATE_CONNECTED;
                //设置监听返回数据
                enableTXNotification();
                //发送广播通知activity连接成功了
                broadcastUpdate(ACTION_GATT_CONNECTED);
            } else {
                broadcastUpdate(ACTION_GATT_DISCONNECTED);
                mConnectionState = STATE_DISCONNECTED;
            }
        }

Characteristic写操作的结果回调:
这个监听在分包发送的时候需要用到,在里面判断的发送结果是否成功,成功的话则发送下一条数据,这样可以保证分包发送的顺序不会错误.

        @Override
        public void onCharacteristicWrite(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic, int status) {
            super.onCharacteristicWrite(gatt, characteristic, status);
            if (status == BluetoothGatt.GATT_SUCCESS) {
               //发送下一条数据
            }
        }

Characteristic状态改变的回调:
这个方法挺重要的,蓝牙广播(是指蓝牙设备本身发出的数据)出来的数据在这里获取,发送指令后蓝牙的回应也是在这里获取.当然要走这个回调必须先设置相关的characteristic的监听.

        @Override
        public void onCharacteristicChanged(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic) {
            super.onCharacteristicChanged(gatt, characteristic);
            //蓝牙状态   发送广播
            byte[] value = characteristic.getValue();
            broadcastUpdate(ACTION_GATT_UPDATE, value);
        }

以上就是BluetoothGattCallback对象中要重写的几个方法,下面我们说一说characteristic的监听设置

     /**
     * 设置特征监听
     */
    public void enableTXNotification() {

        BluetoothGattService RxService = mBluetoothGatt.getService(SERVICE_UUID);
        if (RxService == null) {
            L.e("未找到蓝牙中的对应服务");
            return;
        }
        BluetoothGattCharacteristic RxChar = RxService.getCharacteristic(RX_UUID);
        if (RxChar == null) {
            L.e("未找到蓝牙中的对应特征");
            return;
        }
        //设置true为启用通知,false反之
        mBluetoothGatt.setCharacteristicNotification(RxChar, true);

        //下面为开启蓝牙notify功能,向CCCD中写入值1
        BluetoothGattDescriptor descriptor = RxChar.getDescriptor(CCCD);
        descriptor.setValue(BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE);
        mBluetoothGatt.writeDescriptor(descriptor);
        
        List<BluetoothGattDescriptor> descriptors = RxChar.getDescriptors();
        for (BluetoothGattDescriptor dp : descriptors) {
            dp.setValue(BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE);
            mBluetoothGatt.writeDescriptor(dp);
        }
    }
先通过Service的UUID找到对应的Service对象,再通过我们想要设置监听的Characteristic的UUID找到相应的Characteristic对象,UUID都是蓝牙设备厂商在文档中提供的.找到相应的特征后调用setCharacteristicNotification方法开启监听,就可以在该特征状态发生改变后走到onCharacteristicChanged方法中.
而蓝牙的notify功能需要向CCCD中写入值1才能开启,CCCD值为:`public static final UUID CCCD = UUID.fromString("00002902-0000-1000-8000-00805f9b34fb");`

往Characteristic中写入数据:
我们知道低功耗蓝牙的特点就是快速连接,超低功耗保持连接和传输数据,其缺点是传输速率很低,每次最多向Characteristic中写入20字节的内容.因此当我们需要写入的数据过大时就要使用分包发送.
先来看看如何往Characteristic中写入数据吧

    /**
     * 往Characteristic中写入数据
     * @param value 写入的数据
     */
    public void writeRXCharacteristic(byte[] value) {

        if (mBluetoothGatt == null) {
            return;
        }

        BluetoothGattService RxService = mBluetoothGatt
                .getService(SERVICE_UUID);
        if (RxService == null) {
//            broadcastUpdate(DEVICE_DOES_NOT_SUPPORT_UART);
            return;
        }
        BluetoothGattCharacteristic RxChar = RxService
                .getCharacteristic(TX_UUID);
        if (RxChar == null) {
//            broadcastUpdate(DEVICE_DOES_NOT_SUPPORT_UART);
            return;
        }
        RxChar.setValue(value);
        mBluetoothGatt.writeCharacteristic(RxChar);
    }

还是要先获取到Characteristic对象,然后调用setValue方法设置我们需要写入的数据,该方法接受byte[]和String,我们一般都是写入byte[].基本都要求是十六进制byte[],很多同学会在这里纠结十六进制的转换、数组中有些数据超出byte取值范围了等问题,这些你其实完全不用考虑...不用非要写成0x00这样的形式,因为对于计算机来说都是一样的,超出byte取值范围也不用担心,没有什么影响的.不过如果可以的话最好还是能和你们的硬件工程师沟通一下.
分包发送的话还是需要与硬件工程师沟通具体的分包方法,写入数据是延时多少毫秒,然后在上面onCharacteristicWrite方法中判断写入状态,成功的话则写入下一条数据,这样来保证分包数据的顺序不会错乱.

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,445评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,889评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,047评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,760评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,745评论 5 367
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,638评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,011评论 3 398
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,669评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,923评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,655评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,740评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,406评论 4 320
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,995评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,961评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,197评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,023评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,483评论 2 342

推荐阅读更多精彩内容