Thanks to the logo designed by anharismail
Android Bluetooth Low Energy
If you want to quickly preview all the functions, you can download APK as a test tool directly.
Setp1: Add it in your root build.gradle at the end of repositories
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Step2: Add the dependency
dependencies {
implementation 'com.github.Jasonchenlijian:FastBle:2.4.0'
}
BleManager.getInstance().init(getApplication());
boolean isSupportBle()
void enableBluetooth()
void disableBluetooth()
BleManager.getInstance()
.enableLog(true)
.setReConnectCount(1, 5000)
.setSplitWriteNum(20)
.setConnectOverTime(10000)
.setOperateTimeout(5000);
void initScanRule(BleScanRuleConfig scanRuleConfig)
BleScanRuleConfig scanRuleConfig = new BleScanRuleConfig.Builder()
.setServiceUuids(serviceUuids)
.setDeviceName(true, names)
.setDeviceMac(mac)
.setAutoConnect(isAutoConnect)
.setScanTimeOut(10000)
.build();
BleManager.getInstance().initScanRule(scanRuleConfig);
Tips:
void scan(BleScanCallback callback)
BleManager.getInstance().scan(new BleScanCallback() {
@Override
public void onScanStarted(boolean success) {
}
@Override
public void onScanning(BleDevice bleDevice) {
}
@Override
public void onScanFinished(List<BleDevice> scanResultList) {
}
});
Tips:
BluetoothGatt connect(BleDevice bleDevice, BleGattCallback bleGattCallback)
BleManager.getInstance().connect(bleDevice, new BleGattCallback() {
@Override
public void onStartConnect() {
}
@Override
public void onConnectFail(BleDevice bleDevice, BleException exception) {
}
@Override
public void onConnectSuccess(BleDevice bleDevice, BluetoothGatt gatt, int status) {
}
@Override
public void onDisConnected(boolean isActiveDisConnected, BleDevice bleDevice, BluetoothGatt gatt, int status) {
}
});
Tips:
connect
method in onConnectFail
callback automatically.connect
method again in the onDisConnected
callback method.BluetoothGatt connect(String mac, BleGattCallback bleGattCallback)
BleManager.getInstance().connect(mac, new BleGattCallback() {
@Override
public void onStartConnect() {
}
@Override
public void onConnectFail(BleDevice bleDevice, BleException exception) {
}
@Override
public void onConnectSuccess(BleDevice bleDevice, BluetoothGatt gatt, int status) {
}
@Override
public void onDisConnected(boolean isActiveDisConnected, BleDevice bleDevice, BluetoothGatt gatt, int status) {
}
});
Tips:
After scanning the first equipment that meets the scanning rules, it will stop scanning and connect to the device.
void scanAndConnect(BleScanAndConnectCallback callback)
BleManager.getInstance().scanAndConnect(new BleScanAndConnectCallback() {
@Override
public void onScanStarted(boolean success) {
}
@Override
public void onScanFinished(BleDevice scanResult) {
}
@Override
public void onStartConnect() {
}
@Override
public void onConnectFail(BleDevice bleDevice,BleException exception) {
}
@Override
public void onConnectSuccess(BleDevice bleDevice, BluetoothGatt gatt, int status) {
}
@Override
public void onDisConnected(boolean isActiveDisConnected, BleDevice device, BluetoothGatt gatt, int status) {
}
});
void cancelScan()
BleManager.getInstance().cancelScan();
Tips:
onScanFinished
method.void notify(BleDevice bleDevice, String uuid_service, String uuid_notify, BleNotifyCallback callback)
void notify(BleDevice bleDevice, String uuid_service, String uuid_notify, boolean useCharacteristicDescriptor, BleNotifyCallback callback)
BleManager.getInstance().notify(
bleDevice,
uuid_service,
uuid_characteristic_notify,
new BleNotifyCallback() {
@Override
public void onNotifySuccess() {
}
@Override
public void onNotifyFailure(BleException exception) {
}
@Override
public void onCharacteristicChanged(byte[] data) {
}
});
boolean stopNotify(BleDevice bleDevice, String uuid_service, String uuid_notify)
boolean stopNotify(BleDevice bleDevice, String uuid_service, String uuid_notify, boolean useCharacteristicDescriptor)
BleManager.getInstance().stopNotify(uuid_service, uuid_characteristic_notify);
void indicate(BleDevice bleDevice, String uuid_service, String uuid_indicate, BleIndicateCallback callback)
void indicate(BleDevice bleDevice, String uuid_service, String uuid_indicate, boolean useCharacteristicDescriptor, BleIndicateCallback callback)
BleManager.getInstance().indicate(
bleDevice,
uuid_service,
uuid_characteristic_indicate,
new BleIndicateCallback() {
@Override
public void onIndicateSuccess() {
}
@Override
public void onIndicateFailure(BleException exception) {
}
@Override
public void onCharacteristicChanged(byte[] data) {
}
});
boolean stopIndicate(BleDevice bleDevice, String uuid_service, String uuid_indicate)
boolean stopIndicate(BleDevice bleDevice, String uuid_service, String uuid_indicate, boolean useCharacteristicDescriptor)
BleManager.getInstance().stopIndicate(uuid_service, uuid_characteristic_indicate);
void write(BleDevice bleDevice, String uuid_service, String uuid_write, byte[] data, BleWriteCallback callback)
void write(BleDevice bleDevice, String uuid_service, String uuid_write, byte[] data, boolean split, BleWriteCallback callback)
void write(BleDevice bleDevice, String uuid_service, String uuid_write, byte[] data, boolean split, boolean sendNextWhenLastSuccess, long intervalBetweenTwoPackage, BleWriteCallback callback)
BleManager.getInstance().write(
bleDevice,
uuid_service,
uuid_characteristic_write,
data,
new BleWriteCallback() {
@Override
public void onWriteSuccess(int current, int total, byte[] justWrite) {
}
@Override
public void onWriteFailure(BleException exception) {
}
});
Tips:
boolean split
indicates whether to use packet delivery; the write
method without the boolean split
parameter is subcontracted to the data by more than 20 bytes by default.onWriteSuccess
callback method: current
represents the number of packets that are currently sent, and total
represents the total packet data this time, and justWrite
represents the successful packet that has just been sent.void read(BleDevice bleDevice, String uuid_service, String uuid_read, BleReadCallback callback)
BleManager.getInstance().read(
bleDevice,
uuid_service,
uuid_characteristic_read,
new BleReadCallback() {
@Override
public void onReadSuccess(byte[] data) {
}
@Override
public void onReadFailure(BleException exception) {
}
});
void readRssi(BleDevice bleDevice, BleRssiCallback callback)
BleManager.getInstance().readRssi(
bleDevice,
new BleRssiCallback() {
@Override
public void onRssiFailure(BleException exception) {
}
@Override
public void onRssiSuccess(int rssi) {
}
});
Tips:
void setMtu(BleDevice bleDevice, int mtu, BleMtuChangedCallback callback)
BleManager.getInstance().setMtu(bleDevice, mtu, new BleMtuChangedCallback() {
@Override
public void onSetMTUFailure(BleException exception) {
}
@Override
public void onMtuChanged(int mtu) {
}
});
Tips:
boolean requestConnectionPriority(BleDevice bleDevice,int connectionPriority)
Tips:
BleDevice convertBleDevice(BluetoothDevice bluetoothDevice)
BleDevice convertBleDevice(ScanResult scanResult)
Tips:
List<BleDevice> getAllConnectedDevice()
BleManager.getInstance().getAllConnectedDevice();
BluetoothGatt getBluetoothGatt(BleDevice bleDevice)
List<BluetoothGattService> getBluetoothGattServices(BleDevice bleDevice)
List<BluetoothGattCharacteristic> getBluetoothGattCharacteristics(BluetoothGattService service)
boolean isConnected(BleDevice bleDevice)
BleManager.getInstance().isConnected(bleDevice);
boolean isConnected(String mac)
BleManager.getInstance().isConnected(mac);
int getConnectState(BleDevice bleDevice)
BleManager.getInstance().getConnectState(bleDevice);
void disconnect(BleDevice bleDevice)
BleManager.getInstance().disconnect(bleDevice);
void disconnectAllDevice()
BleManager.getInstance().disconnectAllDevice();
void destroy()
BleManager.getInstance().destroy();
Data operation tool class
String formatHexString(byte[] data, boolean addSpace)
byte[] hexStringToBytes(String hexString)
char[] encodeHex(byte[] data, boolean toLowerCase)
BLE device object is the smallest unit object of scanning, connection and operation in this framework.
String getName()
Bluetooth broadcast name
String getMac()
Bluetooth MAC
byte[] getScanRecord()
Broadcast data
int getRssi()
Initial signal intensity
If you have problems and ideas to communicate with me, you can contact me in the following ways.
WeChat: chenlijian1216
Email: jasonchenlijian@gmail.com
Copyright 2016 chenlijian
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
搞过蓝牙开发的小伙伴都比较清楚,android4.3之后低功耗的蓝牙隐藏着很多坑,比如搜索设备如果频繁的调用startScan方法是会不回调搜索接口的,这是因为蓝牙底层做了优化;比如蓝牙关闭重新搜索搜不到设备或者连接不上设备有可能你没调用BluetoothGatt.close()方法,在蓝牙断开或主动断开的时候你必须调用close方法,因为手机蓝牙可以存在的连接的数量是有限制的,一般是最多存在多少
推荐资源站:https://zhimalier.com/ 本文为 FastBle 的使用教程,及部分补充内容(write 例子)。 关于 FastBle 的详细介绍,可参考 Android BLE开发详解和FastBle源码解析。 目录 一、概述 二、配置 BLE 权限 1. 配置定位权限 2. 配置蓝牙权限 三、设置 BLE 1. 获取 BluetoothAdapter 2. 开启蓝牙 四、初始
FastBle的Github项目地址在这,大家可以看看:[FastBle - GitHub] https://github.com/Jasonchenlijian/FastBle 它的文档也相对比较完整,大家可以查看官方文档来使用它:https://github.com/Jasonchenlijian/FastBle/wiki FastBle的使用 1.1 声明权限 <uses-permissio
1.初始化及配置 //初始化 及 配置 BleManager.getInstance().init(getApplication()); BleManager.getInstance() //是否显示框架内部日志 .enableLog(true) //重连次数
首先,上框架的连接:https://github.com/Jasonchenlijian/FastBle 转: 作者文章: Android BLE开发详解和FastBle源码解析:https://www.jianshu.com/p/795bb0a08beb 1. BLE 扫描不到设备,也未报错。查看Log显示警告: Need ACCESS_COARSE_LOCATION or ACCESS_F
####初始化 (默认开启蓝牙) bleManager = BleManager.getInstance(); bleManager.init(this); 扫描出周围所有蓝牙可连接设备 可获得周围蓝牙设备BluetoothDevice对象数组 bleManager.scanDevice(new ListScanCallback(TIME_OUT) { @Override public void
发布自Kindem的博客,欢迎大家转载,但是要注意注明出处 最近在做物联网课设,过程中需要用到Android的蓝牙API,奈何原生的蓝牙API使用有点麻烦。于是上网搜索看有没有好用的Android蓝牙库,然后发现了这个宝贝,给大家分享一下。 FastBle VS 原生Android蓝牙API 原生Android的蓝牙API使用有点麻烦,要先获取设备的蓝牙适配器,接着注册广播来接受蓝牙设备信息,用完