如何通过蓝牙扫描获取设备名称?

时间:2019-05-10 04:48:01

标签: c# bluetooth xamarin-forms-4

我想从我的应用程序获取蓝牙扫描中的设备名称。当前我得到的是空值而不是设备名称。我尝试使用此链接来实现此功能:-https://github.com/aritchie/bluetoothle

请帮助我

这是我的代码

  CrossBleAdapter.Current.ScanInterval(TimeSpan.FromSeconds(10), TimeSpan.FromSeconds(10)).Subscribe(async scanResult =>
        {
            var _device = await scanResult.Device.ConnectWait().ToTask();

            if (!Devices.Any(d => d.Uuid == _device.Uuid))
            {
                Devices.Add(scanResult.Device);
            }
        });

0 个答案:

没有答案