我正在尝试编写一个应用程序来获取范围内任何蓝牙设备的地址,无需配对或任何传输,只需要地址即可。任何建议从哪里开始?
非常感谢 ..
谷歌出现了这个:
BluetoothRadio.PrimaryRadio.Mode = RadioMode.Connectable;
BluetoothClient client = new BluetoothClient();
BluetoothDeviceInfo[] devices = client.DiscoverDevices();
foreach (BluetoothDeviceInfo device in devices)
{
Console.WriteLine(device.DeviceAddress);
}