服务器之家

服务器之家 > 正文

PC蓝牙通信C#代码实现

时间:2021-12-07 14:40     来源/作者:名字好难

本文实例为大家分享了C#实现PC蓝牙通信代码,供大家参考,具体内容如下

添加引用InTheHand.Net.Personal.dll

首先创建一个蓝牙类

?
1
2
3
4
5
6
7
8
9
class LanYa {
public string blueName { get; set; }                  //l蓝牙名字
public BluetoothAddress blueAddress { get; set; }        //蓝牙的唯一标识符
public ClassOfDevice blueClassOfDevice { get; set; }      //蓝牙是何种类型
public bool IsBlueAuth { get; set; }                  //指定设备通过验证
public bool IsBlueRemembered { get; set; }            //记住设备
public DateTime blueLastSeen { get; set; }
public DateTime blueLastUsed { get; set; }
}
 

然后就是搜索设备

?
1
2
3
4
5
6
7
8
9
List<LanYa> lanYaList = new List<LanYa>();        //搜索到的蓝牙的集合
BluetoothClient client = new BluetoothClient();     
BluetoothRadio radio = BluetoothRadio.PrimaryRadio; //获取蓝牙适配器
radio.Mode = RadioMode.Connectable;           
BluetoothDeviceInfo[] devices = client.DiscoverDevices();//搜索蓝牙 10秒钟
foreach (var item in devices) {
lanYaList.Add(new LanYa { blueName = item.DeviceName, blueAddress = item.DeviceAddress, blueClassOfDevice = item.ClassOfDevice, IsBlueAuth = item.Authenticated, IsBlueRemembered = item.Remembered, blueLastSeen = item.LastSeen, blueLastUsed = item.LastUsed });//把搜索到的蓝牙添加到集合中
}

蓝牙的配对

?
1
2
3
4
BluetoothClient blueclient = new BluetoothClient();
Guid mGUID1 = BluetoothService.Handsfree;    //蓝牙服务的uuid
 
blueclient.Connect(s.blueAddress, mGUID)   //开始配对 蓝牙4.0不需要setpin
 

客户端

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
BluetoothClient bl = new BluetoothClient();//
Guid mGUID2 = Guid.Parse("00001101-0000-1000-8000-00805F9B34FB");//蓝牙串口服务的uuiid
 
try
{
bl.Connect(s.blue_address, mGUID);
//"连接成功";
}
catch(Exception x)
{
//异常
}
 
var v = bl.GetStream();
byte[] sendData = Encoding.Default.GetBytes(“人生苦短,我用python”);
v.Write(sendData, 0, sendData.Length);       //发送

服务器端

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
bluetoothListener = new BluetoothListener(mGUID2);
bluetoothListener.Start();//开始监听
 
bl = bluetoothListener.AcceptBluetoothClient();//接收
 
 
while (true)
{
byte[] buffer = new byte[100];
Stream peerStream = bl.GetStream();
 
peerStream.Read(buffer, 0, buffer.Length);
 
string data= Encoding.UTF8.GetString(buffer).ToString().Replace("\0", "");//去掉后面的\0字节
}

基本上就是这些吧!

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

标签:

相关文章

热门资讯

yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
2021年耽改剧名单 2021要播出的59部耽改剧列表
2021年耽改剧名单 2021要播出的59部耽改剧列表 2021-03-05
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
返回顶部