0
我遵循以下網址:https://github.com/aritchie/bluetoothle
但我沒有得到那麼多的清晰度,是否有無論如何讓他的解決方案輕鬆?我只需要設備和RSSI的列表....如何在Xamarin表單應用程序中獲得藍牙設備的列表?
我遵循以下網址:https://github.com/aritchie/bluetoothle
但我沒有得到那麼多的清晰度,是否有無論如何讓他的解決方案輕鬆?我只需要設備和RSSI的列表....如何在Xamarin表單應用程序中獲得藍牙設備的列表?
我正在使用來自https://github.com/xabre/xamarin-bluetooth-le的插件。掃描設備列表:
adapter.DeviceDiscovered += (s,a) => deviceList.Add(a.Device);
await adapter.StartScanningForDevicesAsync();
在插件源代碼中還有一個示例應用程序供參考。