bluez 0.1.0 bluez: ^0.1.0 copied to clipboard
Provides a client to connect to BlueZ - the Linux Bluetooth stack.
import 'package:dbus/dbus.dart';
import 'package:bluez/bluez.dart';
void main() async {
var systemBus = DBusClient.system();
var client = BlueZClient(systemBus);
await client.connect();
if (client.adapters.isEmpty) {
print('No Bluetooth adapters found');
await systemBus.close();
return;
}
var adapter = client.adapters[0];
print('Searching for devices on ${adapter.name}...');
for (var device in client.devices) {
print(' ${device.name}');
}
client.deviceAddedStream.listen((device) => print(' ${device.name}'));
await adapter.startDiscovery();
await Future.delayed(Duration(seconds: 5));
await adapter.stopDiscovery();
await systemBus.close();
}