蓝牙通信协议

 蓝牙,是一种支持设备短距离通信(一般10m内)的无线电技术。能在包括移动电话、PDA、无线耳机、笔记本电脑、相关外设等众多设备之间进行无线信息交换。利用“蓝牙”技术,能够有效地简化移动通信终端设备之间的通信,也能够成功地简化设备与因特网Internet之间的通信,从而数据传输变得更加迅速高效,为无线通信拓宽道路。蓝牙采用分散式网络结构以及快跳频和短包技术,支持点对点及点对多点通信,工作在全球通用的2.4GHz ISM(即工业、科学、医学)频段。其数据速率为1Mbps。采用时分双工传输方案实现全双工传输


蓝牙权限

蓝牙权限不属于危险权限,所以写在清单文件即可,Android6.0不需要动态申请。但是搜索周边蓝牙设备是需要定位权限的,而且要求gps打开。

允许程序连接到已配对的蓝牙设备。

允许程序发现和配对蓝牙设备

初始化蓝牙

BluetoothAdapter mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();

if (null == mBluetoothAdapter) {

Toast.makeText(this.getApplicationContext(), R.string.not_support_bluetooth, Toast.LENGTH_SHORT).show();

return;

}

开启蓝牙

if(!mBluetoothAdapter.isEnabled()){

Toast.makeText(MainActivity.this, getString(R.string.open_bluetooth), 2000).show();

return;

}

或者            

 mBluetoothAdapter.enable()

搜索蓝牙

mBluetoothAdapter.startDiscovery();

//TODO:搜索蓝牙之前需要判断定位权限和GPS开关 MIUI权限需要定制处理

if (PermissionUtil.getInstance().checkGPSPermission(MainActivity.this)) {if (!AppUtil.isGpsOPen(MainActivity.this) && PermissionUtil.getInstance().isOverMarshmallow()) {permissionDialog =new PermissionDialog(MainActivity.this, R.style.Dialog);        permissionDialog.setOnShowListener(new DialogInterface.OnShowListener() {@Override            public void onShow(DialogInterface dialog) {permissionDialog.setTvContent(getResources().getString(R.string.forbid_tip_gps_open));                permissionDialog.setOnClickListener(new View.OnClickListener() {@Override                    public void onClick(View v) {//跳转GPS设置界面                        Intent intent =new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS);                        startActivityForResult(intent, GPS_OPEN_CODE);                    }                });            }        });        permissionDialog.show();        return;    }}

停止搜索

mBluetoothAdapter.cancelDiscovery();

//BluetoothAdapter.ACTION_DISCOVERY_FINISHED会回调

注册广播 

IntentFilter filter = new IntentFilter();

//发现设备

filter.addAction(BluetoothDevice.ACTION_FOUND);

//设备连接状态改变

filter.addAction(BluetoothDevice.ACTION_BOND_STATE_CHANGED);

//蓝牙设备状态改变

filter.addAction(BluetoothAdapter.ACTION_STATE_CHANGED);

//扫描结束

filter.addAction(BluetoothAdapter.ACTION_DISCOVERY_FINISHEDD);

registerReceiver(mBluetoothReceiver, filter);

接收广播

//接受蓝牙状态信息并更新界面

private BroadcastReceiver mBluetoothReceiver = new BroadcastReceiver() {

@Override

public void onReceive(Context context, Intent intent) {

String action = intent.getAction();

switch (action) {

case BluetoothDevice.ACTION_FOUND:

// TODO: 2017/11/3 需要请求位置权限才能弹对话框  在这里找到指定public address的蓝牙设备进行连接哦!

BluetoothDevice device1 = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);

LogUtil.e(TAG, "address is " + device1.getAddress() + "\tname is " + device1.getName());

break;

case BluetoothDevice.ACTION_BOND_STATE_CHANGED: {

BluetoothDevice device = intent

.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);

switch (device.getBondState()) {

case BluetoothDevice.BOND_BONDING:

LogUtil.i(TAG, "正在与" + device.getName() + "__" + device.getAddress() + "配对");

break;

case BluetoothDevice.BOND_BONDED:

LogUtil.i(TAG, "与" + device.getName() + "__" + device.getAddress() + "完成配对");

HideDialog();

break;

case BluetoothDevice.BOND_NONE:

LogUtil.i(TAG, "取消与" + device.getName() + "__" + device.getAddress() + "配对");

default:

break;

}

break;

}

case BluetoothAdapter.ACTION_DISCOVERY_FINISHED:

LogUtil.e(TAG, "扫描完成!!!");

if (!mFound) {

CToast.makeText(MainActivity.this, getString(R.string.please_set_bt_visiable), CToast.LIGHT_WHITE).show();

}

break;

}

}

};


蓝牙权限

蓝牙权限不属于危险权限,所以写在清单文件即可,Android6.0不需要动态申请。但是搜索周边蓝牙设备是需要定位权限的,而且要求gps打开。

允许程序连接到已配对的蓝牙设备。

允许程序发现和配对蓝牙设备

初始化蓝牙

BluetoothAdapter mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();

if (null == mBluetoothAdapter) {

Toast.makeText(this.getApplicationContext(), R.string.not_support_bluetooth, Toast.LENGTH_SHORT).show();

return;

}

开启蓝牙

if(!mBluetoothAdapter.isEnabled()){

Toast.makeText(MainActivity.this, getString(R.string.open_bluetooth), 2000).show();

return;

}

或者            

 mBluetoothAdapter.enable()

搜索蓝牙

mBluetoothAdapter.startDiscovery();

//TODO:搜索蓝牙之前需要判断定位权限和GPS开关 MIUI权限需要定制处理

if (PermissionUtil.getInstance().checkGPSPermission(MainActivity.this)) {if (!AppUtil.isGpsOPen(MainActivity.this) && PermissionUtil.getInstance().isOverMarshmallow()) {permissionDialog =new PermissionDialog(MainActivity.this, R.style.Dialog);        permissionDialog.setOnShowListener(new DialogInterface.OnShowListener() {@Override            public void onShow(DialogInterface dialog) {permissionDialog.setTvContent(getResources().getString(R.string.forbid_tip_gps_open));                permissionDialog.setOnClickListener(new View.OnClickListener() {@Override                    public void onClick(View v) {//跳转GPS设置界面                        Intent intent =new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS);                        startActivityForResult(intent, GPS_OPEN_CODE);                    }                });            }        });        permissionDialog.show();        return;    }}

停止搜索

mBluetoothAdapter.cancelDiscovery();

//BluetoothAdapter.ACTION_DISCOVERY_FINISHED会回调

注册广播 

IntentFilter filter = new IntentFilter();

//发现设备

filter.addAction(BluetoothDevice.ACTION_FOUND);

//设备连接状态改变

filter.addAction(BluetoothDevice.ACTION_BOND_STATE_CHANGED);

//蓝牙设备状态改变

filter.addAction(BluetoothAdapter.ACTION_STATE_CHANGED);

//扫描结束

filter.addAction(BluetoothAdapter.ACTION_DISCOVERY_FINISHEDD);

registerReceiver(mBluetoothReceiver, filter);

接收广播

//接受蓝牙状态信息并更新界面

private BroadcastReceiver mBluetoothReceiver = new BroadcastReceiver() {

@Override

public void onReceive(Context context, Intent intent) {

String action = intent.getAction();

switch (action) {

case BluetoothDevice.ACTION_FOUND:

// TODO: 2017/11/3 需要请求位置权限才能弹对话框  在这里找到指定public address的蓝牙设备进行连接哦!

BluetoothDevice device1 = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);

LogUtil.e(TAG, "address is " + device1.getAddress() + "\tname is " + device1.getName());

break;

case BluetoothDevice.ACTION_BOND_STATE_CHANGED: {

BluetoothDevice device = intent

.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);

switch (device.getBondState()) {

case BluetoothDevice.BOND_BONDING:

LogUtil.i(TAG, "正在与" + device.getName() + "__" + device.getAddress() + "配对");

break;

case BluetoothDevice.BOND_BONDED:

LogUtil.i(TAG, "与" + device.getName() + "__" + device.getAddress() + "完成配对");

HideDialog();

break;

case BluetoothDevice.BOND_NONE:

LogUtil.i(TAG, "取消与" + device.getName() + "__" + device.getAddress() + "配对");

default:

break;

}

break;

}

case BluetoothAdapter.ACTION_DISCOVERY_FINISHED:

LogUtil.e(TAG, "扫描完成!!!");

if (!mFound) {

CToast.makeText(MainActivity.this, getString(R.string.please_set_bt_visiable), CToast.LIGHT_WHITE).show();

}

break;

}

}

};

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

推荐阅读更多精彩内容