获取蓝牙设备的地址

时间:2009-08-11 02:46:09

标签: c# .net bluetooth

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

非常感谢..

1 个答案:

答案 0 :(得分:2)

Google出现了这个:

BluetoothRadio.PrimaryRadio.Mode = RadioMode.Connectable;
BluetoothClient client = new BluetoothClient();
BluetoothDeviceInfo[] devices = client.DiscoverDevices();
foreach (BluetoothDeviceInfo device in devices)
{
    Console.WriteLine(device.DeviceAddress);
}