我正在尝试编写一个应用程序来获取范围内的任何蓝牙设备的地址,没有配对或任何传输,只想要所有的地址。有什么建议从哪里开始?
非常感谢..
答案 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);
}