0

我正在尝试编写一个应用程序来获取范围内任何蓝牙设备的地址,无需配对或任何传输,只需要地址即可。任何建议从哪里开始?

非常感谢 ..

4

1 回答 1

2

谷歌出现了这个:

BluetoothRadio.PrimaryRadio.Mode = RadioMode.Connectable;
BluetoothClient client = new BluetoothClient();
BluetoothDeviceInfo[] devices = client.DiscoverDevices();
foreach (BluetoothDeviceInfo device in devices)
{
    Console.WriteLine(device.DeviceAddress);
}
于 2009-08-11T02:59:29.927 回答