我已按照以下网址:https://github.com/aritchie/bluetoothle
但是我没有那么清楚,无论如何要让他轻松解决?我只需要设备列表和RSSI ....
答案 0 :(得分:1)
我使用https://github.com/xabre/xamarin-bluetooth-le中的插件。要扫描设备列表:
adapter.DeviceDiscovered += (s,a) => deviceList.Add(a.Device);
await adapter.StartScanningForDevicesAsync();
插件源代码中还有一个示例应用程序供参考。