有老铁们私信,要讲解下蓝牙开发,那么今天来了;
站在用户的角度思考问题,与客户深入沟通,找到君山网站设计与君山网站推广的解决方案,凭借多年的经验,让设计与互联网技术结合,创造个性化、用户体验好的作品,建站类型包括:成都网站制作、成都网站建设、企业官网、英文网站、手机端网站、网站推广、域名申请、虚拟空间、企业邮箱。业务覆盖君山地区。
Android 4.3(API Level 18)开始引入Bluetooth Low Energy(BLE,低功耗蓝牙)的核心功能并提供了相应的 API, 应用程序通过这些 API 扫描蓝牙设备、查询 services、读写设备的 characteristics(属性特征)等操作。
BLE低功耗蓝牙,主要特点是快速搜索,快速连接,超低功耗保持连接和数据传输;
安卓手机涉及蓝牙权限问题,蓝牙开发需要在AndroidManifest.xml文件中添加权限声明:
- 为适配安卓6.0以及以上版本需要添加一个模糊定位的权限
- 手机权限管理中允许此权限,否则会出现无法搜索到设备的情况;
为适配安卓6.0以及以上版本需要添加一个模糊定位的权限
手机权限管理中允许此权限,否则会出现无法搜索到设备的情况;
在搜索设备之前需要询问打开手机蓝牙:
- //获取系统蓝牙适配器管理类
- private BluetoothAdapter mBluetoothAdapter = BluetoothAdapter
- .getDefaultAdapter();
- // 询问打开蓝牙
- if (mBluetoothAdapter != null && !mBluetoothAdapter.isEnabled()) {
- Intent enableBtIntent = new Intent(
- BluetoothAdapter.ACTION_REQUEST_ENABLE);
- startActivityForResult(enableBtIntent, 1);
- }
- // 申请打开蓝牙请求的回调
- @Override
- protected void onActivityResult(int requestCode, int resultCode, Intent data) {
- // TODO Auto-generated method stub
- super.onActivityResult(requestCode, resultCode, data);
- if (requestCode == 1) {
- if (resultCode == RESULT_OK) {
- Toast.makeText(this, "蓝牙已经开启", Toast.LENGTH_SHORT).show();
- } else if (resultCode == RESULT_CANCELED) {
- Toast.makeText(this, "没有蓝牙权限", Toast.LENGTH_SHORT).show();
- finish();
- }
- }
- }
- mBluetoothAdapter.startLeScan(callback);
- private LeScanCallback callback = new LeScanCallback() {
- @Override
- public void onLeScan(BluetoothDevice device, int arg1, byte[] arg2) {
- //device为扫描到的BLE设备
- if(device.getName() == "目标设备名称"){
- //获取目标设备
- targetDevice = device;
- }
- }
- };
通过扫描BLE设备,根据设备名称区分出目标设备targetDevice,下一步实现与目标设备的连接,在连接设备之前要停止搜索蓝牙;
mBluetoothAdapter.stopLeScan(callback);
停止搜索一般需要一定的时间来完成,最好调用停止搜索函数之后加以100ms的延时,保证系统能够完全停止搜索蓝牙设备。停止搜索之后启动连接过程;
BLE蓝牙的连接方法相对简单只需调用connectGatt方法;
- mBluetoothAdapter.startLeScan(callback);
- private LeScanCallback callback = new LeScanCallback() {
- @Override
- public void onLeScan(BluetoothDevice device, int arg1, byte[] arg2) {
- //device为扫描到的BLE设备
- if(device.getName() == "目标设备名称"){
- //获取目标设备
- targetDevice = device;
- }
- }
- };
参数说明
返回值 BluetoothGatt: BLE蓝牙连接管理类,主要负责与设备进行通信;
boolean autoConnect:建议置为false,能够提升连接速度;
BluetoothGattCallback callback 连接回调,重要参数,BLE通信的核心部分;
与设备建立连接之后与设备通信,整个通信过程都是在BluetoothGattCallback的异步回调函数中完成;
BluetoothGattCallback中主要回调函数如下:
- private BluetoothGattCallback gattCallback = new BluetoothGattCallback() {
- @Override
- public void onConnectionStateChange(BluetoothGatt gatt, int status,
- int newState) {
- }
- @Override
- public void onCharacteristicWrite(BluetoothGatt gatt,
- BluetoothGattCharacteristic characteristic, int status) {
- super.onCharacteristicWrite(gatt, characteristic, status);
- }
- @Override
- public void onDescriptorWrite(BluetoothGatt gatt,
- BluetoothGattDescriptor descriptor, int status) {
- };
- @Override
- public void onServicesDiscovered(BluetoothGatt gatt, int status) {
- }
- @Override
- public void onCharacteristicChanged(BluetoothGatt gatt,
- BluetoothGattCharacteristic characteristic) {
- }
- };
上述几个回调函数是BLE开发中不可缺少的;
当调用targetdDevice.connectGatt(context, false, gattCallback)后系统会主动发起与BLE蓝牙设备的连接,若成功连接到设备将回调onConnectionStateChange方法,其处理过程如下:
- @Override
- public void onConnectionStateChange(BluetoothGatt gatt, int status,
- int newState) {
- if (newState == BluetoothGatt.STATE_CONNECTED) {
- Log.e(TAG, "设备连接上 开始扫描服务");
- // 开始扫描服务,安卓蓝牙开发重要步骤之一
- mBluetoothGatt.discoverServices();
- }
- if (newState == BluetoothGatt.STATE_DISCONNECTED) {
- // 连接断开
- /*连接断开后的相应处理*/
- }
- };
判断newState == BluetoothGatt.STATE_CONNECTED表明此时已经成功连接到设备;
mBluetoothGatt.discoverServices();
扫描BLE设备服务是安卓系统中关于BLE蓝牙开发的重要一步,一般在设备连接成功后调用,扫描到设备服务后回调onServicesDiscovered()函数,函数原型如下:
- @Override
- public void onServicesDiscovered(BluetoothGatt gatt, int status) {
- private List
servicesList; - //获取服务列表
- servicesList = mBluetoothGatt.getServices();
- }
BLE蓝牙开发主要有负责通信的BluetoothGattService完成的。当且称为通信服务。通信服务通过硬件工程师提供的UUID获取。获取方式如下:
具体操作方式如下:
- BluetoothGattService service = mBluetoothGatt.getService(UUID.fromString("蓝牙模块提供的负责通信服务UUID字符串"));
- // 例如形式如:49535343-fe7d-4ae5-8fa9-9fafd205e455
- notifyCharacteristic = service.getCharacteristic(UUID.fromString("notify uuid"));
- writeCharacteristic = service.getCharacteristic(UUID.fromString("write uuid"));
开启监听,即建立与设备的通信的首发数据通道,BLE开发中只有当上位机成功开启监听后才能与下位机收发数据。开启监听的方式如下:
- mBluetoothGatt.setCharacteristicNotification(notifyCharacteristic, true)
- BluetoothGattDescriptor descriptor = characteristic
- .getDescriptor(UUID
- .fromString
- ("00002902-0000-1000-8000-00805f9b34fb"));
- descriptor.setValue(BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE);
若开启监听成功则会回调BluetoothGattCallback中的onDescriptorWrite()方法,处理方式如下:
- @Override
- public void onDescriptorWrite(BluetoothGatt gatt,
- BluetoothGattDescriptor descriptor, int status) {
- if (status == BluetoothGatt.GATT_SUCCESS) {
- //开启监听成功,可以像设备写入命令了
- Log.e(TAG, "开启监听成功");
- }
- };
监听成功后通过向 writeCharacteristic写入数据实现与下位机的通信。写入方式如下:
- //value为上位机向下位机发送的指令
- writeCharacteristic.setValue(value);
- mBluetoothGatt.writeCharacteristic(writeCharacteristic)
其中:value一般为Hex格式指令,其内容由设备通信的蓝牙通信协议规定;
若写入指令成功则回调BluetoothGattCallback中的onCharacteristicWrite()方法,说明将数据已经发送给下位机;
- @Override
- public void onCharacteristicWrite(BluetoothGatt gatt,
- BluetoothGattCharacteristic characteristic, int status) {
- if (status == BluetoothGatt.GATT_SUCCESS) {
- Log.e(TAG, "发送成功");
- }
- super.onCharacteristicWrite(gatt, characteristic, status);
- }
若发送的数据符合通信协议,则下位机会向上位机回复相应的数据。发送的数据通过回调onCharacteristicChanged()方法获取,其处理方式如下:
- @Override
- public void onCharacteristicChanged(BluetoothGatt gatt,
- BluetoothGattCharacteristic characteristic) {
- // value为设备发送的数据,根据数据协议进行解析
- byte[] value = characteristic.getValue();
- }
通过向下位机发送指令获取下位机的回复数据,即可完成与设备的通信过程;
当与设备完成通信之后之后一定要断开与设备的连接。调用以下方法断开与设备的连接:
- mBluetoothGatt.disconnect();
- mBluetoothGatt.close();
蓝牙开发中有很多问题,要静下心分析问题,肯定可以解决的,一起加油;
网页名称:一篇了解BLE蓝牙开发详解
转载来于:http://www.mswzjz.com/qtweb/news40/194540.html
网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联