赞
踩
写在前面的注意:
Android BLE 蓝牙4.0开始的低功耗技术。在BLE协议中,有2个角色:周边(periphery)和中央(Central),中央设备扫描,寻找广播;外围设备发出广播。
工作流程:Scan-->Connect-->DiscoverService-->Characteristic-->DisConnect
首先是扫描设备进行连接,连接上扫描设备有什么服务,读写服务里的特征,最后断开连接。
===============================================================================
权限:
<uses-permission android:name="android.permission.BLUETOOTH"/>
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
<uses-feature android:name="android.hardware.bluetooth_le"
android:required="true"/>//这个feature可加可不加,加了会让App只运行在有相应设备(蓝牙4.0)的机器上
===============================================================================
扫描:
bluetoothManager = (BluetoothManager) getSystemService(Context.BLUETOOTH_SERVICE);
bluetoothAdapter = bluetoothManager.getAdapter();
bluetoothAdapter.startLeScan(scanCallback);
//扫描蓝牙设备的回调
private BluetoothAdapter.LeScanCallback scanCallback = new BluetoothAdapter.LeScanCallback(){
@Override
public void onLeScan(BluetoothDevice device, int rssi, byte[] scanRecord) {//在工作线程工作
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。