Bluetooth

news2025/1/18 12:00:17

GATT简介

蓝牙分为经典蓝牙和低功耗蓝牙(BLE),我们常用的蓝牙遥控器就是低功耗蓝牙
低功耗蓝牙(BLE)连接都是建立在 GATT (Generic Attribute Profile) 协议之上。
GATT全称Generic Attribute Profile(直译即:通用属性协议),是一个在蓝牙连接之上的发送和接收较短的数据段的通用规范,这些很短的数据段被称为属性(Attribute)。

GATT的结构如下图:

  • gatt是多个service的集合,gatt包含多个不同的service
  • service下包含多个不同的Charcteristic(特征)
  • Charcteristic又包含value和Descriptor

客户端 

前言
客户端的是通过从特定的服务(BluetoothGattService)里面获取特性(BluetoothGattCharacteristic)


客户端
BluetoothGatt  --- 通过此类发送消息
BluetoothGattService  --  特定服务
BluetoothGattCharacteristic  -- 特定字符
BluetoothGattCallback   -- 回调监听

第一个维度:
怎么获取?
1.我们怎么获取BluetoothGatt?
BluetoothGatt gatt = BluetoothDevice.connectGatt(context, false , bluetoothGattCallback);

2.怎么从BluetoothGatt中获取BluetoothGattService
1)先启动发现服务:gatt.discoverServices();
2)再从bluetoothGattCallback.onServicesDiscovered的回调方法中调用
gatt.getServices()通过特定uuid找特定服务。例如:
        for (BluetoothGattService service : gatt.getServices()) {
            Log.d(TAG, "service uuid " + service.getUuid() + " type "+service.getType());
            if (service.getUuid().toString().equals(serviceUUID)) {//客户端默认一个uuid
                bluetoothGattService = service;
            }
        }
        

3.怎么从BluetoothGattService中获取BluetoothGattCharacteristic
从2中找到了BluetoothGattService,就可以在通过uuid找对应的BluetoothGattCharacteristic
例如。bluetoothGattService.getCharacteristic(uuid)
或者
        for (BluetoothGattCharacteristic characteristic : bluetoothGattService.getCharacteristics()) {
            Log.d(TAG, "characteristic uuid "+characteristic.getUuid()+" type "+characteristic.getProperties());
            if (characteristic.getUuid().toString().equals(readUUID)) {  //读特征
                readCharacteristic = characteristic;
            } else if (characteristic.getUuid().toString().equals(writeUUID)) {  //写特征
                writeCharacteristic = characteristic;
            }
        }


第二个维度:
目的干什么?
我们的目的是把数据发出去,而发数据的关键是BluetoothGattCharacteristic
发数据的工具是BluetoothGatt
例如
客户端主动要求的:
BluetoothGatt.writeCharacteristic
回调于
bluetoothGattCallback.onCharacteristicWrite

BluetoothGatt.readCharacteristic
回调于
bluetoothGattCallback.onCharacteristicRead


客户端端被动接收的:
按照以往的思路,先要设置监听对象
BluetoothGatt.setCharacteristicNotification  
设置需要监听的BluetoothGattCharacteristic

回调于
bluetoothGattCallback.onCharacteristicRead

注意:
如果你想监听几个,就需要设置几个BluetoothGattCharacteristic

服务端

关键类
BluetoothGattServer   --- 发送数据的关键类
BluetoothGattService  --  ble特定服务
BluetoothGattCharacteristic  -- ble特定字符
BluetoothGattServerCallback  -- 回调监听

BluetoothLeAdvertiser --- 广播ble
AdvertiseData         --- 广播所带数据
AdvertiseSettings     --- 广播属性设置


简单来说:
1.如果我们需要我们的ble service被监听到,就需要时时广播

2.广播需要分两步走:
a.先广播:BluetoothLeAdvertiser.startAdvertising
发送的广播被客户端扫描的时候接收到

b.再启动服务:BluetoothGattServer.addService
服务是我们自定义
服务里面的属性需要BluetoothGattService.addCharacteristic进去
这里就涉及uuid的设置了

3.接下来就是客户端获取监听成功后的回调监听

 

1.蓝牙设备列表的获取

1.申请权限

<uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />
private void requestPermission(String permission) {
        if (Build.VERSION.SDK_INT > Build.VERSION_CODES.M){
            if (ContextCompat.checkSelfPermission(this,permission) != PackageManager.PERMISSION_GRANTED){
                ActivityCompat.requestPermissions(this,new String[]{permission},1);
            }
        }
    }
@Override
    public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions,
            @NonNull int[] grantResults) {
        super.onRequestPermissionsResult(requestCode, permissions, grantResults);
        if (requestCode == 1){
            if (grantResults[0] == PackageManager.PERMISSION_GRANTED){
                Log.e(TAG,"success");
            }
            Log.e(TAG,"failure");
        }
    }

2.获取蓝牙列表

 final BluetoothAdapter bluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
        if (bluetoothAdapter == null) {
            Log.w(TAG,"BluetoothAdapter is null.");
            return;
        }
final Set<BluetoothDevice> bondedDevices = bluetoothAdapter.getBondedDevices();

3.连接Gatt

bluetoothGatt = bluetoothDevice.connectGatt(this, true,new MyBlueCallback());
 class MyBlueCallback extends BluetoothGattCallback{
        private String TAG = "MainActivity";

        @Override
        public void onConnectionStateChange(BluetoothGatt gatt, int status, int newState) {
            Log.e(TAG,"status:"+status+ "            newState:"+newState);
            //BluetoothGatt.STATE_CONNECTED

            super.onConnectionStateChange(gatt, status, newState);
        }
    }

在进行BLE开发过程中可能会遇到操作失败等情况,这个时候可能需要断开与BLE的连接或者清理相关资源.在BluetoothGatt类中有两个相关的方法
1. disconnect()
2. close()

disconnect()方法: 调用了该方法之后可以调用connect()方法进行重连,这样还可以继续进行断开前的操作.

close()方法: 一但调用了该方法, 如果你想再次连接,必须调用BluetoothDevice的connectGatt()方法. 因为close()方法将释放BluetootheGatt的所有资源.

需要注意的问题:
当你需要手动断开时,调用disconnect()方法,此时断开成功后会回调onConnectionStateChange方法,在这个方法中再调用close方法释放资源。
如果在disconnect后立即调用close,会导致无法回调onConnectionStateChange方法。

名称含义含义
connect
/**
 * Connect back to remote device.
 *
 * <p>This method is used to re-connect to a remote device after the
 * connection has been dropped. If the device is not in range, the
 * re-connection will be triggered once the device is back in range.
 *
 * @return true, if the connection attempt was initiated successfully
 */
重连
disconnect
/**
 * Disconnects an established connection, or cancels a connection attempt
 * currently in progress.
 */
断连
close
/**
 * Close this Bluetooth GATT client.
 *
 * Application should call this method as early as possible after it is done with
 * this GATT client.
 */
关闭连接

4、GATT连接成功,回调onConnectionStateChange()函数

gatt连接成功或失败,会回调gattCallback下的onConnectionStateChange()函数
接下来调用mBluetoothGatt.discoverServices()函数(功能是查询已连接的gatt下的service)

5、回调onServicesDiscovered()函数,获取指定Service和Characteristic

上一步调用mBluetoothGatt.discoverServices()函数后,系统会回调gattCallback下的onServicesDiscovered()函数,这表明我们已经可以通过指定的UUID来获取指定的Service实例了

在onServicesDiscovered()函数回调后,通过UUID先获取service,然后再使用获取到的service和UUID获取Characteristic,最后mBluetoothGatt.readCharacteristic(mVIDPIDCharacteristic);读取这个Characteristic

 6、onCharacteristicRead()函数回调,读取Characteristic的value值

上一步调用readCharacteristic()后,系统会回调gattCallback下的onCharacteristicRead()
此时我们使用回参characteristic直接getValue()即可读取到数值

整体代码

package com.gatt.demo;

import android.annotation.SuppressLint;
import android.app.Activity;
import android.bluetooth.BluetoothAdapter;
import android.bluetooth.BluetoothDevice;
import android.bluetooth.BluetoothGatt;
import android.bluetooth.BluetoothGattCallback;
import android.bluetooth.BluetoothGattCharacteristic;
import android.bluetooth.BluetoothGattService;
import android.bluetooth.BluetoothManager;
import android.bluetooth.BluetoothProfile;
import android.content.Context;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.util.Log;
import android.widget.TextView;
import android.widget.Toast;

import androidx.annotation.NonNull;

import java.util.Set;
import java.util.UUID;


/**
 * 作者:libeibei
 * 日期:20201222
 * 类功能说明:读取指定名称遥控器的VID、PID
 */

public class MainActivity extends Activity {

    public static String TAG = "BLE_READ";
    public static String BLE_NAME = "川流TV";
    private Context mContext;
    private BluetoothManager bluetoothManager;
    private BluetoothAdapter bluetoothAdapter;
    protected BluetoothDevice mSelectedDevice;
    private BluetoothGatt mBluetoothGatt;
    private BluetoothGattCharacteristic mVIDPIDCharacteristic;
    //已配对的设备
    Set<BluetoothDevice> pairedDevices;

    //GATT service UUID
    public static final UUID DEVICE_INFO_SERVICE_UUID = UUID.fromString("0000180a-0000-1000-8000-00805f9b34fb");
    //Charcteristic UUID
    public static final UUID VID_PID_CHARACTERISTIC_UUID = UUID.fromString("00002a50-0000-1000-8000-00805f9b34fb");

    TextView tv;
    String VID = "";
    String PID = "";

    @SuppressLint("HandlerLeak")
    Handler handler = new Handler() {
        @Override
        public void handleMessage(@NonNull Message msg) {
            switch (msg.what) {
                case 0x1:
                    Toast.makeText(mContext, "VID、PID读取成功", Toast.LENGTH_LONG).show();
                    tv.setText("VID=" + VID + " PID=" + PID);
                    break;
                default:
                    break;
            }
        }
    };


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        tv = (TextView) findViewById(R.id.tv_vid_pid);
    }

    @Override
    protected void onResume() {
        super.onResume();
        //第一步,初始化各工具
        init();
        //第二步,根据名称,获取指定的蓝牙设备:mSelectedDevice
        getTargetBLEDevice();

        //第三步,声明mGattCallback,并重写回调函数,见下面step 3

        //第四步,通过上两步获取的mSelectedDevice和mGattCallback建立GATT连接
        connectGatt();

        //第五步,建立gatt连接后,会回调mGattCallback下的onConnectionStateChange()函数
        //在onConnectionStateChange()函数中调用mBluetoothGatt.discoverServices();
        //见下面step 5

        //第六步,调用mBluetoothGatt.discoverServices()后
        // 会回调mGattCallback下的onServicesDiscovered()函数
        // 在该函数下
        // 1、获取DeviceInfoService 见下面step 6-1
        // 2、通过拿到的service,获取VIDPIDCharacteristic 见下面step 6-2
        // 3、读取获取到的这个VIDPIDCharacteristic 见下面step 6-3

        //第七步,读取VIDPIDCharacteristic后
        // 会回调mGattCallback下的onCharacteristicRead()函数
        // step 7-1:在这个函数下将读取出的value值
        // step 7-2:转码即可
        //(ascii字符转ascii值,再将十进制ascii值转为十六进制字符,即为VID和PID)
    }

    //step 1
    private void init() {
        mContext = MainActivity.this;
        if (bluetoothManager == null)
            bluetoothManager = (BluetoothManager) getSystemService(Context.BLUETOOTH_SERVICE);
        if (bluetoothAdapter == null)
            bluetoothAdapter = bluetoothManager.getAdapter();
        pairedDevices = bluetoothAdapter.getBondedDevices();
    }

    //step 2
    private void getTargetBLEDevice() {
        if (pairedDevices != null && pairedDevices.size() > 0) {
            for (BluetoothDevice bluetoothDevice : pairedDevices) {
                String name = bluetoothDevice.getName();
                Log.i(TAG, "bluetoothDevice name  " + name);
                if (bluetoothDevice != null && name.equalsIgnoreCase(BLE_NAME)) {
                    Log.i(TAG, "已找到指定蓝牙设备,该设备MAC=" + bluetoothDevice.getAddress());
                    mSelectedDevice = bluetoothDevice;
                    break;
                }
            }
        }
    }


    //step 3
    BluetoothGattCallback mGattCallback = new BluetoothGattCallback() {
        @Override
        public void onConnectionStateChange(BluetoothGatt gatt, int status, int newState) {
            super.onConnectionStateChange(gatt, status, newState);
            Log.i(TAG, "onConnectionStateChange newstate:" + newState + " status:" + status);
            if (status == BluetoothGatt.GATT_SUCCESS) {
                if (newState == BluetoothProfile.STATE_CONNECTED) {
                    Log.i(TAG, "============>GATT Connect Success!!<=============");
                    //step 5
                    mBluetoothGatt.discoverServices();
                } else if (newState == BluetoothProfile.STATE_DISCONNECTED) {
                    if (mBluetoothGatt != null) {
                        mBluetoothGatt.close();
                        mBluetoothGatt = null;
                    }
                }
            }
        }

        @Override
        public void onServicesDiscovered(BluetoothGatt gatt, int status) {
            super.onServicesDiscovered(gatt, status);
            Log.i(TAG, "onServicesDiscovered(), status = " + status);
            if (status == BluetoothGatt.GATT_SUCCESS) {
                //step 6-1:获取DeviceInfoService
                BluetoothGattService mDeviceInfoService = gatt.getService(DEVICE_INFO_SERVICE_UUID);
                if (mDeviceInfoService == null) {
                    Log.i(TAG, "Device Info Service is null ,disconnect GATT...");
                    gatt.disconnect();
                    gatt.close();
                    return;
                }
                //step 6-2:获取遥控器VIDPID Characteristic
                mVIDPIDCharacteristic = mDeviceInfoService.getCharacteristic(VID_PID_CHARACTERISTIC_UUID);
                if (mVIDPIDCharacteristic == null) {
                    Log.e(TAG, "read mModelCharacteristic not found");
                    return;
                } else {
                    //step 6-3:读取遥控器VIDPID特性
                    mBluetoothGatt.readCharacteristic(mVIDPIDCharacteristic);
                }
            } else {
                Log.i(TAG, "onServicesDiscovered status false");
            }
        }

        @Override
        public void onCharacteristicRead(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic, int status) {
            super.onCharacteristicRead(gatt, characteristic, status);
            if (status == BluetoothGatt.GATT_SUCCESS) {
                String value = "";
                if (characteristic.getUuid().equals(VID_PID_CHARACTERISTIC_UUID)) {
                    //step 7-1:读取出characteristic的value值
                    value = new String(characteristic.getValue()).trim().replace(" ", "");
                    Log.i(TAG, "=====>读取到 value =" + value);
                    //step 7-2:此处为ascii表字符,需转换为十进制ascii值
                    //再将十进制ascii值,转换为十六进制
                    VID = changeAsciiTo16(value.charAt(0));
                    PID = changeAsciiTo16(value.charAt(value.length() - 1));
                    //设备VID、PID读取成功,handle更新主线程界面UI
                    handler.sendEmptyMessage(0x1);

                }
            } else {
                Log.i(TAG, "onCharacteristicRead status wrong");
                if (mBluetoothGatt != null)
                    mBluetoothGatt.disconnect();
            }
        }

        @Override
        public void onCharacteristicWrite(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic, int status) {
            super.onCharacteristicWrite(gatt, characteristic, status);
            Log.i(TAG, "onCharacteristicWrite:" + characteristic.getUuid().toString());
        }
    };

    //step 4
    private void connectGatt() {
        if (mSelectedDevice != null)
            mBluetoothGatt = mSelectedDevice.connectGatt(mContext, false, mGattCallback);
        else
            Toast.makeText(mContext, "没有找到指定的蓝牙设备,无法建立GATT", Toast.LENGTH_LONG).show();
    }


    private String changeAsciiTo16(char a) {
        Log.i(TAG, "change from a =" + a);
        String value = "";
        int val = (int) a;
        Log.i(TAG, "change to 10进制ASCII值 val =" + val);
        //ascii值到
        value = Integer.toHexString(val).toUpperCase();
        Log.i(TAG, "change to 16进制字符串 value =" + value);
        return value;
    }
}

 解配对

mDeviceGatt.getDevice().removeBond();

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/387076.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

软件测试用例篇(2)

功能测试界面测试兼容性测试安全测试易用性测试性能测试 针对有需求的案例来设计测试用例:邮箱注册&#xff0c;部分测试用例 https://zay1xofb7z6.feishu.cn/mindnotes/bmncnKD5Ak6GSZl3PRlWDgF9z3g#mindmap 一)等价类: 场景需求:姓名长度是6-200位&#xff0c;那么如何进行设…

【数据结构初阶】手撕单链表

目录一.链表概念和结构二.单链表功能的实现1.打印单链表内容2.申请单链表节点3.头插和尾插4.头删和尾删5.单链表查找6.pos位置前后插入7.pos位置删除三.链表面试题剖析一.链表概念和结构 概念&#xff1a;链表是一种物理存储结构上非连续、非顺序的存储结构&#xff0c;数据元素…

5-12 SpringCloud快速开发入门:服务消费者构建Hystrix Dashboard监控端点

服务消费者构建Hystrix Dashboard监控端点 Hystrix 仪表盘工程已经创建好了&#xff0c;现在我们需要有一个服务&#xff0c;让这个服务提供一个路径为/actuator/hystrix.stream 接口&#xff0c;然后就可以使用 Hystrix 仪表盘来对该服务进行监控了&#xff1b; 我们改造消费者…

pandas常用操作

文章目录1 认识Pandas2 pandas常用数据结构2.1 Series2.1.1 Series创建2.1.2 数据类型转换2.1.3 查看Series对象的属性2.1.4 预览数据head、tail2.1.5 通过索引获取数据2.2 DataFrame2.2.1 创建DataFrame对象2.2.2 获取行、列、值2.2.3 数据预览2.2.4 通过索引获取数据2.2.5 增…

【Redis】Redis高级客户端Lettuce详解

文章目录前提Lettuce简介连接Redis定制的连接URI语法基本使用API同步API异步API反应式API发布和订阅事务和批量命令执行Lua脚本执行高可用和分片普通主从模式哨兵模式集群模式动态命令和自定义命令高阶特性配置客户端资源使用连接池几个常见的渐进式删除例子在SpringBoot中使用…

C/C++每日一练(20230304)

目录 1. 计数质数 ☆ 2. 筛选10到1000的回文数 ☆ 3. 计算位于矩阵边缘的元素之和 ★ 1. 计数质数 统计所有小于非负整数 n 的质数的数量。 示例 1&#xff1a; 输入&#xff1a;n 10 输出&#xff1a;4 解释&#xff1a;小于 10 的质数一共有 4 个, 它们是 2, 3, 5, 7…

【HomeKit】从HomeKit架构层细化到HomeKit ADK集成

前言&#xff1a;这篇文章是对于苹果协议文件《HomeKit ADK Integration Guide - Addendum for Televisions》的学习&#xff0c;针对版本为ADK 6.0电视。描述了将HomeKit ADK的电视简介集成到目标平台中所需的步骤。 总说明 此配置文件用于控制启用Airplay的电视&#xff0c;…

高通Android 13默认切换免提功能

1、测试部反馈 由于平板本身没有听筒功能 因此考虑工厂直接切换到免提功能 2、修改路径 frameworks/av/services/audiopolicy/enginedefault/src/Engine.cpp 3、编译源码ok 拨打紧急号码 可以正常切换到免提功能 其他mtk平台可能不一样 具体以项目实际为准 相关链接 构建…

ESP32编译及运行错误记录

1、打印格式不对 一般都是因为日志中某个参数打印格式不匹配造成。 ESP_LOGI(TAG, "[APP] Free memory: %lu bytes", esp_get_free_heap_size());//将之前的%d 改为%lu 2、配置载不对 这里选择了蓝牙模块需要引入蓝牙组件才能编译通过 idf.py menuconfig Component…

项目中的MD5、盐值加密

首先介绍一下MD5&#xff0c;而项目中用的是MD5和盐值来确保密码的安全性&#xff1b; 1. md5简介 md5的全称是md5信息摘要算法&#xff08;英文&#xff1a;MD5 Message-Digest Algorithm &#xff09;&#xff0c;一种被广泛使用的密码散列函数&#xff0c;可以产生一个128位…

css-盒模型

巧妙运用margin负值盒模型和怪异盒模型(border padding 包含在内)display: block 能让textarea input 水平尺寸自适应父容器? – 不能 * {box-sizing: border-box; // bs: bb }<textarea/> 是替换元素,尺寸由内部元素决定,不受display水平影响. 当然可以直接设置宽度10…

React(三):脚手架、组件化、生命周期、父子组件通信、插槽、Context

React&#xff08;三&#xff09;一、脚手架安装和创建1.安装脚手架2.创建脚手架3.看看脚手架目录4.运行脚手架二、脚手架下从0开始写代码三、组件化1.类组件2.函数组件四、React的生命周期1.认识生命周期2.图解生命周期&#xff08;1&#xff09;Constructor&#xff08;2&…

Allegro如何导入第一方网表操作指导

Allegro如何导入第一方网表操作指导 在启动PCB设计之前,网表的导入是首要的流程,第一方网表内容如下图 如何将第一方网表导入到PCB中,具体操作如下 点击File点击Import

【项目】用户管理系统

一、需求分析完成一个简单的用户信息管理系统&#xff0c;超级管理员可以登录本系统&#xff0c;查询用户信息、实现用户的管理功能。1.1功能&#xff1a;主要操作和管理的对象&#xff1a;用户。用户分为两类&#xff1a;超级管理员/普通用户。登录功能&#xff08;只针对超管…

深入理解多进程

多进程 一、进程状态 二、创建子进程 - fork 1、函数接口 #include <unistd.h>pid_t fork(void);2、基本概述 成功后&#xff0c;子进程的 PID 在父进程中返回&#xff0c;在子进程中返回 0。 失败时&#xff0c;在父进程中返回 -1&#xff0c;不创建子进程&#xff0c…

MyBatis——进阶操作(2)

标签 if标签 当提交的表单中有些为非必填项&#xff0c;用户并没有上传这些属性的值&#xff0c;那么程序可以上传NUll&#xff0c;也可以用if标签判断用户有没有上传这个值 <if test"参数!null">操作 </if>其中test中填写一条语句&#xff0c;如果得…

uniapp实现地图点聚合功能

前言 在工作中接到的一个任务&#xff0c;在app端实现如下功能&#xff1a; 地图点聚合地图页面支持tab切换&#xff08;设备、劳务、人员&#xff09;支持人员搜索显示分布 但是uniapp原有的map标签不支持点聚合功能&#xff08;最新的版本支持了点聚合功能&#xff09;&am…

爬虫碎碎念

20230304 - &#xff08;非专业人士&#xff0c;简单记录自己的需求和思考&#xff09; 0. 引言 平时看到一些网站的照片什么的&#xff0c;有那种批量下载的需求&#xff0c;当然有些也是视频网站的图片介绍什么的&#xff0c;也即是说&#xff0c;我需要把这些网站的照片批…

剑指 Offer II 013. 二维子矩阵的和

题目链接 剑指 Offer II 013. 二维子矩阵的和 mid 题目描述 给定一个二维矩阵 matrix&#xff0c;以下类型的多个请求&#xff1a; 计算其子矩形范围内元素的总和&#xff0c;该子矩阵的左上角为 (row1, col1)&#xff0c;右下角为 (row2, col2)。 实现 NumMatrix类&#xf…

测开:前端基础-css

一、CSS介绍和引用 1.1 css概述 层叠样式表&#xff0c;是一种样式表语言&#xff0c;用来描述HTML和XML文档的呈现。 CSS 用于简化HTML标签&#xff0c;把关于样式部分的内容提取出来&#xff0c;进行单独的控制&#xff0c;使结构与样式分离开发。 CSS 是以HTML为基础&…