上传者: 38742460
|
上传时间: 2022-11-29 10:14:24
|
文件大小: 187KB
|
文件类型: PDF
现在很多电脑提供了蓝牙支持,很多笔记本网卡也集成了蓝牙功能,也可以采用USB蓝牙方便的连接手机等蓝牙设备进行通信。
操作蓝牙要使用类库InTheHand.Net.Personal
首先在项目中引用该类库;
static void Main(string[] args)
{
BluetoothRadio bluetoothRadio = BluetoothRadio.PrimaryRadio;
if (bluetoothRadio == null)
{
Console.WriteLine(没有找到本机蓝牙设备!);
}
else
{
Console.Writ