2017-08-25 62 views

回答

1

我正在使用來自https://github.com/xabre/xamarin-bluetooth-le的插件。掃描設備列表:

adapter.DeviceDiscovered += (s,a) => deviceList.Add(a.Device); 
await adapter.StartScanningForDevicesAsync(); 

在插件源代碼中還有一個示例應用程序供參考。

相關問題