获取蓝牙设备地址 [英] Getting the address of a bluetooth device

查看:269
本文介绍了获取蓝牙设备地址的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想写得到的范围内的任何蓝牙设备地址的应用程序,没有配对或任何转让,只想地址仅此而已。任何意见,从哪里开始?

I'm trying to write an application that gets the addresses of any bluetooth devices in range, no pairing or any transfer, just want the address that's all. Any advice where to start?

非常感谢..

推荐答案

<一个href="http://www.google.com/search?rlz=1C1GGLS%5FenUS301US303&sourceid=chrome&ie=UTF-8&q=getting+started+with+bluetooth+.net"相对=nofollow>谷歌的止跌回升这样的:

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

这篇关于获取蓝牙设备地址的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆