-
Notifications
You must be signed in to change notification settings - Fork 9
Home
Damian edited this page Jul 26, 2022
·
1 revision
Welcome to the Linux.Bluetooth wiki!
using Linux.Bluetooth;
...
// Get the first adapter (useful for a single BLE adapter system)
IAdapter1 adapter = (await BlueZManager.GetAdaptersAsync()).FirstOrDefault();
// Get specific adapter
IAdapter1 adapter = await BlueZManager.GetAdapterAsync(adapterName: "hci0");
adapter.DeviceFound += adapter_DeviceFoundAsync;
await adapter.StartDiscoveryAsync();
...
await adapter.StopDiscoveryAsync();