当前位置:   article > 正文

蓝牙通信设计与开发(AS初学者试用)_蓝牙通信开发原理

蓝牙通信开发原理

目录

一.什么是蓝牙通信

二.蓝牙通信的过程步骤

三.代码

1.重要的类和接口:

2.代码:

(1)客户端的代码

(2)服务端代码

(3)共同处理通讯处理类

(4)Constant常量类代码

(5)BlueToothController蓝牙控制类

(6)蓝牙设备adaptor代码DeviceAdapter

四.结果截图


一.什么是蓝牙通信

        Android 平台包含蓝牙网络堆栈支持,此支持能让设备以无线方式与其他蓝牙设备交换数据。应用框架提供通过 Android Bluetooth API 访问蓝牙功能的权限。这些 API 允许应用以无线方式连接到其他蓝牙设备,从而实现点到点和多点无线功能。

        原理:蓝牙通信和socket通信原理基本上是一致的,下面我给大家上一张图(图为Socket通信图)。左为客户端Socket连接的一个流程:首先获取一个客户端Socket(),然后连接上,就可以读取数据和发送数据了。右为服务端Socket操作流程:

二.蓝牙通信的过程步骤

首先开启蓝牙------搜索可用设备------创建蓝牙socket,获取输入输出流------读取和写入数据------

断开连接关闭蓝牙

 

 安卓蓝牙API可以完成的操作:

(1)扫描其他蓝牙设备

(2)查询本地蓝牙适配器的配对蓝牙设备

(3)建立 RFCOMM 通道

(4)通过服务发现连接到其他设备

(5)与其他设备进行双向数据传输

(6)管理多个连接

三.代码

1.重要的类和接口:

BluetoothAdapter

代表本地蓝牙适配器(蓝牙无线电)。BluetoothAdapter是所有蓝牙交互的入口。使用这个你可以发现其他蓝牙设备,查询已配对的设备列表,使用一个已知的MAC地址来实例化一个BluetoothDevice,以及创建一个BluetoothServerSocket来为监听与其他设备的通信。

BluetoothDevice

代表一个远程蓝牙设备,使用这个来请求一个与远程设备的BluetoothSocket连接,或者查询关于设备名称、地址、类和连接状态等设备信息。

BluetoothSocket

代表一个蓝牙socket的接口(和TCP Socket类似)。这是一个连接点,它允许一个应用与其他蓝牙设备通过InputStream和OutputStream交换数据。

BluetoothServerSocket

代表一个开放的服务器socket,它监听接受的请求(与TCP ServerSocket类似)。为了连接两台Android设备,一个设备必须使用这个类开启一个服务器socket。当一个远程蓝牙设备开始一个和该设备的连接请求,BluetoothServerSocket将会返回一个已连接的BluetoothSocket,接受该连接。

BluetoothClass

描述一个蓝牙设备的基本特性和性能。这是一个只读的属性集合,它定义了设备的主要和次要的设备类以及它的服务。但是,它没有描述所有的蓝牙配置和设备支持的服务,它只是暗示了设备的类型。

BluetoothProfile

一个表示蓝牙配置文件的接口。一个Bluetooth profile是一个基于蓝牙的通信无线接口定义。一个例子是Hands-Free profile。更多的讨论请见Working with Profiles。

BluetoothHeadset

提供对移动手机使用的蓝牙耳机的支持。它包含了Headset and Hands-Free (v1.5)配置文件。

BluetoothA2dp

定义高品质的音频如何通过蓝牙连接从一个设备传输到另一个设备。”A2DP“是Advanced Audio Distribution Profile的缩写。

BluetoothHealth

表示一个Health Device Profile代理,它控制蓝牙服务。

BluetoothHealthCallback

一个抽象类,你可以使用它来实现BluetoothHealth的回调函数。你必须扩展这个类并实现回调函数方法来接收应用程序的注册状态改变以及蓝牙串口状态的更新。

BluetoothHealthAppConfiguration

表示一个应用程序配置,Bluetooth Health第三方应用程序注册和一个远程Bluetooth Health设备通信。

BluetoothProfile.ServiceListener

一个接口,当BluetoothProfile IPC客户端从服务器上建立连接或断开连接时,它负责通知它们(也就是,运行在特性配置的内部服务)

2.代码:

(1)客户端的代码

  1. package com.example.blue.connect;
  2. import android.bluetooth.BluetoothAdapter;
  3. import android.bluetooth.BluetoothDevice;
  4. import android.bluetooth.BluetoothSocket;
  5. import android.os.Handler;
  6. import java.io.IOException;
  7. import java.util.UUID;
  8. public class ConnectThread extends Thread {
  9. private static final UUID MY_UUID = UUID.fromString(Constant.CONNECTTION_UUID);
  10. private final BluetoothSocket mmSocket;
  11. private final BluetoothDevice mmDevice;
  12. private BluetoothAdapter mBluetoothAdapter;
  13. private final Handler mHandler;
  14. private ConnectedThread mConnectedThread;
  15. public ConnectThread(BluetoothDevice device, BluetoothAdapter adapter, Handler handler) {
  16. BluetoothSocket tmp = null;
  17. mmDevice = device;
  18. mBluetoothAdapter = adapter;
  19. mHandler = handler;
  20. try {
  21. tmp = device.createRfcommSocketToServiceRecord(MY_UUID);
  22. } catch (IOException e) { }
  23. mmSocket = tmp;
  24. }
  25. public void run() {
  26. mBluetoothAdapter.cancelDiscovery();
  27. try {
  28. mmSocket.connect();
  29. } catch (Exception connectException) {
  30. mHandler.sendMessage(mHandler.obtainMessage(Constant.MSG_ERROR, connectException));
  31. try {
  32. mmSocket.close();
  33. } catch (IOException closeException) { }
  34. return;
  35. }
  36. manageConnectedSocket(mmSocket);
  37. }
  38. private void manageConnectedSocket(BluetoothSocket mmSocket) {
  39. mHandler.sendEmptyMessage(Constant.MSG_CONNECTED_TO_SERVER);
  40. mConnectedThread = new ConnectedThread(mmSocket, mHandler);
  41. mConnectedThread.start();
  42. }
  43. public void cancel() {
  44. try {
  45. mmSocket.close();
  46. } catch (IOException e) { }
  47. }
  48. public void sendData(byte[] data) {
  49. if( mConnectedThread!=null){
  50. mConnectedThread.write(data);
  51. }
  52. }
  53. }

(2)服务端代码

  1. package com.example.blue.connect;
  2. import android.bluetooth.BluetoothAdapter;
  3. import android.bluetooth.BluetoothServerSocket;
  4. import android.bluetooth.BluetoothSocket;
  5. import android.os.Handler;
  6. import java.io.IOException;
  7. import java.util.UUID;
  8. //服务器端线程
  9. public class AcceptThread extends Thread {
  10. private static final String NAME = "BlueToothClass";
  11. private static final UUID MY_UUID = UUID.fromString(Constant.CONNECTTION_UUID);
  12. private final BluetoothServerSocket mmServerSocket;
  13. private final BluetoothAdapter mBluetoothAdapter;
  14. private final Handler mHandler;
  15. private ConnectedThread mConnectedThread;
  16. public AcceptThread(BluetoothAdapter adapter, Handler handler) {
  17. mBluetoothAdapter = adapter;
  18. mHandler = handler;
  19. BluetoothServerSocket tmp = null;
  20. try {
  21. tmp = mBluetoothAdapter.listenUsingRfcommWithServiceRecord(NAME, MY_UUID);
  22. } catch (IOException e) { }
  23. mmServerSocket = tmp;
  24. }
  25. public void run() {
  26. BluetoothSocket socket = null;
  27. while (true) {
  28. try {
  29. mHandler.sendEmptyMessage(Constant.MSG_START_LISTENING);
  30. socket = mmServerSocket.accept();
  31. } catch (IOException e) {
  32. mHandler.sendMessage(mHandler.obtainMessage(Constant.MSG_ERROR, e));
  33. break;
  34. }
  35. if (socket != null) {
  36. manageConnectedSocket(socket);
  37. try {
  38. mmServerSocket.close();
  39. mHandler.sendEmptyMessage(Constant.MSG_FINISH_LISTENING);
  40. } catch (IOException e) {
  41. e.printStackTrace();
  42. }
  43. break;
  44. }
  45. }
  46. }
  47. private void manageConnectedSocket(BluetoothSocket socket) {
  48. //只支持同时处理一个连接
  49. if( mConnectedThread != null) {
  50. mConnectedThread.cancel();
  51. }
  52. mHandler.sendEmptyMessage(Constant.MSG_GOT_A_CLINET);
  53. mConnectedThread = new ConnectedThread(socket, mHandler);
  54. mConnectedThread.start();
  55. }
  56. public void cancel() {
  57. try {
  58. mmServerSocket.close();
  59. mHandler.sendEmptyMessage(Constant.MSG_FINISH_LISTENING);
  60. } catch (IOException e) { }
  61. }
  62. public void sendData(byte[] data) {
  63. if( mConnectedThread!=null){
  64. mConnectedThread.write(data);
  65. }
  66. }
  67. }

(3)共同处理通讯处理类

  1. package com.example.blue.connect;
  2. import android.bluetooth.BluetoothSocket;
  3. import android.os.Handler;
  4. import android.os.Message;
  5. import android.util.Log;
  6. import java.io.IOException;
  7. import java.io.InputStream;
  8. import java.io.OutputStream;
  9. public class ConnectedThread extends Thread {
  10. private final BluetoothSocket mmSocket;
  11. private final InputStream mmInStream;
  12. private final OutputStream mmOutStream;
  13. private final Handler mHandler;
  14. public ConnectedThread(BluetoothSocket socket, Handler handler) {
  15. mmSocket = socket;
  16. InputStream tmpIn = null;
  17. OutputStream tmpOut = null;
  18. mHandler = handler;
  19. try {
  20. tmpIn = socket.getInputStream();
  21. tmpOut = socket.getOutputStream();
  22. } catch (IOException e) { }
  23. mmInStream = tmpIn;
  24. mmOutStream = tmpOut;
  25. }
  26. public void run() {
  27. byte[] buffer = new byte[1024];
  28. int bytes;
  29. //一直读数据
  30. while (true) {
  31. try {
  32. bytes = mmInStream.read(buffer);
  33. if( bytes >0) {
  34. Message message = mHandler.obtainMessage(Constant.MSG_GOT_DATA, new String(buffer, 0, bytes, "utf-8"));
  35. mHandler.sendMessage(message);
  36. }
  37. Log.d("GOTMSG", "message size" + bytes);
  38. } catch (IOException e) {
  39. mHandler.sendMessage(mHandler.obtainMessage(Constant.MSG_ERROR, e));
  40. break;
  41. }
  42. }
  43. }
  44. //发送数据
  45. public void write(byte[] bytes) {
  46. try {
  47. mmOutStream.write(bytes);
  48. } catch (IOException e) { }
  49. }
  50. public void cancel() {
  51. try {
  52. mmSocket.close();
  53. } catch (IOException e) { }
  54. }
  55. }

(4)Constant常量类代码

  1. public class Constant {
  2. public static final String CONNECTTION_UUID = "00001101-0000-1000-8000-00805F9B34FB";
  3. /**
  4. * 开始监听
  5. */
  6. public static final int MSG_START_LISTENING = 1;
  7. /**
  8. * 结束监听
  9. */
  10. public static final int MSG_FINISH_LISTENING = 2;
  11. /**
  12. * 有客户端连接
  13. */
  14. public static final int MSG_GOT_A_CLINET = 3;
  15. /**
  16. * 连接到服务器
  17. */
  18. public static final int MSG_CONNECTED_TO_SERVER = 4;
  19. /**
  20. * 获取到数据
  21. */
  22. public static final int MSG_GOT_DATA = 5;
  23. /**
  24. * 出错
  25. */
  26. public static final int MSG_ERROR = -1;
  27. }

(5)BlueToothController蓝牙控制类

  1. public class BlueToothController {
  2. private BluetoothAdapter mAapter;
  3. public BlueToothController() {
  4. mAapter = BluetoothAdapter.getDefaultAdapter();
  5. }
  6. public BluetoothAdapter getAdapter() {
  7. return mAapter;
  8. }
  9. /**
  10. * 打开蓝牙
  11. * @param activity
  12. * @param requestCode
  13. */
  14. public void turnOnBlueTooth(Activity activity, int requestCode) {
  15. Intent intent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
  16. activity.startActivityForResult(intent, requestCode);
  17. // mAdapter.enable();
  18. }
  19. /**
  20. * 打开蓝牙可见性
  21. * @param context
  22. */
  23. public void enableVisibly(Context context) {
  24. Intent discoverableIntent = new
  25. Intent(BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE);
  26. discoverableIntent.putExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION, 300);
  27. context.startActivity(discoverableIntent);
  28. }
  29. /**
  30. * 查找设备
  31. */
  32. public void findDevice() {
  33. assert (mAapter != null);
  34. mAapter.startDiscovery();
  35. }
  36. /**
  37. * 获取绑定设备
  38. * @return
  39. */
  40. public List<BluetoothDevice> getBondedDeviceList() {
  41. return new ArrayList<>(mAapter.getBondedDevices());
  42. }
  43. }

(6)蓝牙设备adaptor代码DeviceAdapter

  1. public class DeviceAdapter extends BaseAdapter {
  2. private Context mContext;
  3. private List<BluetoothDevice> mDate;
  4. public DeviceAdapter(List<BluetoothDevice> Date, Context context){
  5. mDate = Date;
  6. mContext = context;
  7. }
  8. @Override
  9. public int getCount() {
  10. return mDate.size();
  11. }
  12. @Override
  13. public Object getItem(int position) {
  14. return mDate.get(position);
  15. }
  16. @Override
  17. public long getItemId(int position) {
  18. return position;
  19. }
  20. @Override
  21. public View getView(int position, View convertView, ViewGroup parent) {
  22. ViewHolder viewHolder = null;
  23. if(convertView==null){
  24. viewHolder = new ViewHolder();
  25. convertView = LayoutInflater.from(mContext).inflate(R.layout.deviceadapter_layout,null);
  26. viewHolder.textView1 = (TextView)convertView.findViewById(R.id.textview1);
  27. viewHolder.textView2 = (TextView)convertView.findViewById(R.id.textview2);
  28. convertView.setTag(viewHolder);
  29. }else{
  30. viewHolder = (ViewHolder) convertView.getTag();
  31. }
  32. //获取蓝牙设备
  33. BluetoothDevice bluetoothDevice = (BluetoothDevice) getItem(position);
  34. viewHolder.textView1.setText("Name="+bluetoothDevice.getName());
  35. viewHolder.textView2.setText("Address"+bluetoothDevice.getAddress());
  36. return convertView;
  37. }
  38. public class ViewHolder{
  39. public TextView textView1;
  40. public TextView textView2;
  41. }
  42. public void refresh(List<BluetoothDevice> data){
  43. mDate = data;
  44. notifyDataSetChanged();
  45. }
  46. }

四.结果截图

开始:                                         执行程序:       

  

 结果:打开蓝牙

相关学习链接:
Developers--Bluetooth       Bluetooth2       蓝牙通信

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

闽ICP备14008679号