bluez 0.1.4 bluez: ^0.1.4 copied to clipboard
Provides a client to connect to BlueZ - the Linux Bluetooth stack.
Provides a client to connect to BlueZ - the Linux Bluetooth stack.
import 'package:bluez/bluez.dart';
var client = BlueZClient();
await client.connect();
for (var device in client.devices) {
print('Device ${device.address} ${device.alias}');
}
await client.close();
Contributing to bluez.dart #
We welcome contributions! See the contribution guide for more details.