bluetooth_classic 0.0.3 copy "bluetooth_classic: ^0.0.3" to clipboard
bluetooth_classic: ^0.0.3 copied to clipboard

PlatformAndroid

A Flutter plugin to connect to Bluetooth Classic devices, mainly designed to work with serial communication.

bluetooth_classic #

A Flutter plugin to connect to Bluetooth Classic devices, mainly designed to work with serial communication. #

Pub Version (including pre-releases) Pub Popularity

Features #

  • check that permissions are granted to use the device
  • get already paired devices
  • scan for devices
  • connect & disconnect to a device
  • read from connected device
  • write to connected device

Installation #

To install the package, simply run flutter pub add bluetooth_classic

Api Documentation #

For a list of functions and their definitions, you can look at the documentation on pub.dev

Basic example #

Getting Paired Devices #

import 'package:bluetooth_classic/bluetooth_classic.dart';

final _bluetoothClassicPlugin = BluetoothClassic();
await _bluetoothClassicPlugin.initPermissions();
List<Device> _discoveredDevices = await _bluetoothClassicPlugin.getPairedDevices();

Scanning for Devices #

import 'package:bluetooth_classic/bluetooth_classic.dart';
import 'package:bluetooth_classic/models/device.dart';

final _bluetoothClassicPlugin = BluetoothClassic();
List<Device> _discoveredDevices = [];
await _bluetoothClassicPlugin.initPermissions();
_bluetoothClassicPlugin.onDeviceDiscovered().listen(
  (event) {
    _discoveredDevices = [..._discoveredDevices, event];
  },
);
await _bluetoothClassicPlugin.startScan();
// when you want to stop scanning
await _bluetoothClassicPlugin.stopScan();

Connecting to a device, reading and sending data to it #

import 'package:bluetooth_classic/bluetooth_classic.dart';

final _bluetoothClassicPlugin = BluetoothClassic();
Uint8List _data = Uint8List(0);

await _bluetoothClassicPlugin.initPermissions();
// connect to a device with its MAC address and the application uuid you want to use (in this example, serial)
await _bluetoothClassicPlugin.connect("AA:AA:AA:AA", "00001101-0000-1000-8000-00805f9b34fb");

// NB: I'm not doing error checking or seeing if the device is still connected in this code, check the [example folder](/example/lib/main.dart) for a more thorough demonstration
// send data to device
await _bluetoothClassicPlugin.write("ping");

//
_bluetoothClassicPlugin.onDeviceDataReceived().listen((event) {
  setState(() {
    _data = Uint8List.fromList([..._data, ...event]);
  });
});

// disconnect when done
await _bluetoothClassicPlugin.disconnect();

Example Code #

You can find the latest example code in the example folder

25
likes
150
points
1.23k
downloads

Publisher

verified publishermatteogassend.com

Weekly Downloads

A Flutter plugin to connect to Bluetooth Classic devices, mainly designed to work with serial communication.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on bluetooth_classic