Skip to content

Repository files navigation

pub packageChat


FlutterBlue



Introduction

FlutterBlue is a bluetooth plugin for Flutter, a new app SDK to help developers build modern multi-platform apps.

Alpha version

This library is actively developed alongside production apps, and the API will evolve as we continue our way to version 1.0.

Please be fully prepared to deal with breaking changes.This package must be tested on a real device.

Having trouble adapting to the latest API? I'd love to hear your use-case, please contact me.

Cross-Platform Bluetooth LE

FlutterBlue aims to offer the most from both platforms (iOS and Android).

Using the FlutterBlue instance, you can scan for and connect to nearby devices (BluetoothDevice). Once connected to a device, the BluetoothDevice object can discover services (BluetoothService), characteristics (BluetoothCharacteristic), and descriptors (BluetoothDescriptor). The BluetoothDevice object is then used to directly interact with characteristics and descriptors.

Usage

Obtain an instance

FlutterBlue flutterBlue =FlutterBlue.instance;

Scan for devices

// Start scanning
flutterBlue.startScan(timeout:Duration(seconds:4));
// Listen to scan resultsvar subscription = flutterBlue.scanResults.listen((results) {
// do something with scan resultsfor (ScanResult r in results) {
print('${r.device.name} found! rssi: ${r.rssi}');
}
});
// Stop scanning
flutterBlue.stopScan();

Connect to a device

// Connect to the deviceawait device.connect();
// Disconnect from device
device.disconnect();

Discover services

List<BluetoothService> services =await device.discoverServices();
services.forEach((service) {
// do something with service
});

Read and write characteristics

// Reads all characteristicsvar characteristics = service.characteristics;
for(BluetoothCharacteristic c in characteristics) {
List<int> value =await c.read();
print(value);
}
// Writes to a characteristicawait c.write([0x12, 0x34])

Read and write descriptors

// Reads all descriptorsvar descriptors = characteristic.descriptors;
for(BluetoothDescriptor d in descriptors) {
List<int> value =await d.read();
print(value);
}
// Writes to a descriptorawait d.write([0x12, 0x34])

Set notifications and listen to changes

await characteristic.setNotifyValue(true);
characteristic.value.listen((value) {
// do something with new value
});

Read the MTU and request larger size

final mtu =await device.mtu.first;
await device.requestMtu(512);

Note that iOS will not allow requests of MTU size, and will always try to negotiate the highest possible MTU (iOS supports up to MTU size 185)

Getting Started

Change the minSdkVersion for Android

Flutter_blue is compatible only from version 19 of Android SDK so you should change this in android/app/build.gradle:

Android {
defaultConfig {
minSdkVersion:19

Add permissions for Bluetooth

We need to add the permission to use Bluetooth and access location:

Android

In the android/app/src/main/AndroidManifest.xml let’s add:

 <uses-permissionandroid:name="android.permission.BLUETOOTH" /> <uses-permissionandroid:name="android.permission.BLUETOOTH_ADMIN" /> <uses-permissionandroid:name="android.permission.ACCESS_COARSE_LOCATION"/> <application

IOS

In the ios/Runner/Info.plist let’s add:

<dict><key>NSBluetoothAlwaysUsageDescription</key> <string>NeedBLE permission</string><key>NSBluetoothPeripheralUsageDescription</key> <string>NeedBLE permission</string><key>NSLocationAlwaysAndWhenInUseUsageDescription</key> <string>NeedLocation permission</string><key>NSLocationAlwaysUsageDescription</key> <string>NeedLocation permission</string><key>NSLocationWhenInUseUsageDescription</key> <string>NeedLocation permission</string>

For location permissions on iOS see more at: https://developer.apple.com/documentation/corelocation/requesting_authorization_for_location_services

Reference

FlutterBlue API

AndroidiOSDescription
scanStarts a scan for Bluetooth Low Energy devices.

BluetoothDevice API

AndroidiOSDescription
disconnectCancels an active or pending connection to the device.
discoverServicesDiscovers services offered by the remote device as well as their characteristics and descriptors.
servicesGets a list of services. Requires that discoverServices() has completed.
stateStream of state changes for the Bluetooth Device.
mtuStream of mtu size changes.
requestMtuRequest to change the MTU for the device.

BluetoothCharacteristic API

AndroidiOSDescription
readRetrieves the value of the characteristic.
writeWrites the value of the characteristic.
setNotifyValueSets notifications or indications on the characteristic.
valueStream of characteristic's value when changed.

BluetoothDescriptor API

AndroidiOSDescription
readRetrieves the value of the descriptor.
writeWrites the value of the descriptor.

Troubleshooting

When I scan using a service UUID filter, it doesn't find any devices.

Make sure the device is advertising which service UUID's it supports. This is found in the advertisement packet as UUID 16 bit complete list or UUID 128 bit complete list.

About

Bluetooth plugin for Flutter

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages