bluez

Creator: coderz1093

Last updated:

Add to Cart

Description:

bluez

Provides a client to connect to BlueZ - the Linux Bluetooth stack.
import 'package:bluez/bluez.dart';

final client = BlueZClient();
await client.connect();

for (final device in client.devices) {
print('Device ${device.address} ${device.alias}');
}

await client.close();
copied to clipboard
Supported platforms #
This package is designed for use on Linux, as the BlueZ stack is Linux-specific
(other platforms have their own Bluetooth stacks). You can safely include this
package when writing applications that work on multiple platforms, but it will
fail with an exception when being used if BlueZ is not present.
Contributing to bluez.dart #
We welcome contributions! See the contribution guide for more details.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.