热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

C#学习教程:如何使用C#手动绑定到WinForm中的BlueTooth低能耗设备?分享

如何使用C#手动绑定到WinForm中的BlueTooth低能耗设备?这个问题主要通过以下方式解答:WindowsUWP在发现后连接到BLE设备我正在编写一个自定义服务并测试,目前

如何使用C#手动绑定到WinForm中的BlueTooth低能耗设备?

这个问题主要通过以下方式解答: Windows UWP在发现后连接到BLE设备

我正在编写一个自定义服务并测试,目前,在Windows 10上使用C#.NET WinForm连接到蓝牙低功耗(BLE)设备。 我正在使用Framework 4.6.1。 我们使用TI SmartRF06评估板和TI CC2650 BLE子卡。 另一位开发人员正在处理董事会的固件。

目前使用类似于上面参考答案的方法,我能够连接到已经绑定的BLE设备。 此设备是手动绑定的,Windows确实要求我输入PIN。 由于设备没有PIN,只需输入“0”即可让设备连接。 一旦连接,以这种方式,我可以获得所有GATT服务并做我需要做的事情。 所以我找到并获得广告BLE设备没有任何问题。

问题是如何连接尚未配对的BLE设备? 我已经浏览了网络并找到了许多BLE代码示例,但没有具体说明如何完成代码中的配对。 不确定我甚至需要它配对,但Windows似乎只在配对设备上显示我的GATT服务。

当我使用不成对的设备执行此操作时:

private void BleWatcherOnReceived(BluetoothLEAdvertisementWatcher sender, BluetoothLEAdvertisementReceivedEventArgs args) { var dev = await BluetoothLEDevice.FromBluetoothAddressAsync(args.BluetoothAddress); // dev.DeviceInformation.Pairing.CanPair is true // dpr.Status is Failed DevicePairingResult dpr = await dev.DeviceInformation.Pairing.PairAsync(DevicePairingProtectionLevel.None); var service = await GattDeviceService.FromIdAsync(dev.DeviceInformation.Id); } 

当设备尚未手动配对时,dpr的结果始终失败。 这导致GattDeviceServices为空。 但我能够获得广告和BLE设备的属性。

还有这种类型的连接方法,但我无法弄清楚如何使用它:

 var prslt = await device.DeviceInformation.Pairing.Custom.PairAsync(DevicePairingKinds.ProvidePin, DevicePairingProtectionLevel.None,IDevicePairingSettings); 

IdeviceParingSettings是一个接口。 不确定要使用哪个类。 我想这是我可以设置我可能需要的“O”的PIN码?

有没有人在使用C#的Windows中与BLE设备配对,其中BLE设备没有安全性。 基本上它应该是敞开的。 我觉得我错过了一些简单的东西或者这根本不可能(我已经看到一些post声称是这种情况。大多数都是多年了)。

我确实尝试了上述post中描述的方法,结果没有任何差异。

任何帮助表示赞赏。 如果您需要更多代码,请查看我在顶部提供的链接,因为这是我的开始。 我很乐意提供我所有的实际代码,如果有一个序列,我正在做的不合适。

我想到了。 我走在正确的轨道上。

使用后连接:

 var dev = await BluetoothLEDevice.FromBluetoothAddressAsync(args.BluetoothAddress); 

您需要进行自定义配对:

 var prslt = await device.DeviceInformation.Pairing.Custom.PairAsync(DevicePairingKinds.ProvidePin, DevicePairingProtectionLevel.None); 

但这只会给你一个错误。 您还必须创建device.DeviceInformation.Pairing.Custom.PairingRequested事件处理程序。

所以我创建了这个处理程序

 private void handlerPairingReq(DeviceInformationCustomPairing CP, DevicePairingRequestedEventArgs DPR) { //so we get here for custom pairing request. //this is the magic place where your pin goes. //my device actually does not require a pin but //windows requires at least a "0". So this solved //it. This does not pull up the Windows UI either. DPR.Accept("0"); } 

在PairAsync调用之前将其连接起来像:

 device.DeviceInformation.Pairing.Custom.PairingRequested += handlerPairingRequested; 

用于连接的BlueToothAdvertisementWatcher代码的示例代码:

  private BluetoothLEAdvertisementWatcher BTWatch = new BluetoothLEAdvertisementWatcher(); private void Inits() { BTWatch.Received += new TypedEventHandler(BtAddRx); BTWatch.Start(); } private async void BtAddRx(BluetoothLEAdvertisementWatcher bw, BluetoothLEAdvertisementReceivedEventArgs args) { GattCommunicationStatus srslt; GattReadResult rslt; bw.Stop();//Stop this while inside. device = await BluetoothLEDevice.FromBluetoothAddressAsync(args.BluetoothAddress); if (device.DeviceInformation.Pairing.IsPaired == false) { /* Optional Below - Some examples say use FromIdAsync to get the device. I don't think that it matters. */ var did = device.DeviceInformation.Id; //I reuse did to reload later. device.Dispose(); device = null; device = await BluetoothLEDevice.FromIdAsync(did); /* end optional */ var handlerPairingRequested = new TypedEventHandler(handlerPairingReq); device.DeviceInformation.Pairing.Custom.PairingRequested += handlerPairingRequested; log("Pairing to device now...."); var prslt = await device.DeviceInformation.Pairing.Custom.PairAsync(DevicePairingKinds.ProvidePin, DevicePairingProtectionLevel.None); log("Custom PAIR complete status: " + prslt.Status.ToString() + " Connection Status: " + device.ConnectionStatus.ToString()); device.DeviceInformation.Pairing.Custom.PairingRequested -= handlerPairingRequested; //Don't need it anymore once paired. if (prslt.Status != DevicePairingResultStatus.Paired) { //This should not happen. If so we exit to try again. log("prslt exiting. prslt.status=" + prslt.Status.ToString());// so the status may have updated. lets drop out of here and get the device again. should be paired the 2nd time around? bw.Start();//restart this watcher. return; } else { // The pairing takes some time to complete. If you don't wait you may have issues. 5 seconds seems to do the trick. System.Threading.Thread.Sleep(5000); //try 5 second lay. device.Dispose(); //Reload device so that the GATT services are there. This is why we wait. device = await BluetoothLEDevice.FromIdAsync(did); } var services = device.GattServices; //then more code to finish it up. } 

如果您想断开连接,请使用:

 await device.DeviceInformation.Pairing.UnpairAsync(); 

对不起凌乱的代码。 如果有人发现有用或有疑问,请告诉我。 我无法在任何地方找到任何WinForm示例代码。 实际上我找不到任何代码来显示如何在没有UI的情况下与PIN配对。 所以我希望这可以帮助任何可能卡住的人。

上述就是C#学习教程:如何使用C#手动绑定到WinForm中的BlueTooth低能耗设备?分享的全部内容,如果对大家有所用处且需要了解更多关于C#学习教程,希望大家多多关注—编程笔记


推荐阅读
  • 本文探讨了使用C#在SQL Server和Access数据库中批量插入多条数据的性能差异。通过具体代码示例,详细分析了两种数据库的执行效率,并提供了优化建议。 ... [详细]
  • Startup 类配置服务和应用的请求管道。Startup类ASP.NETCore应用使用 Startup 类,按照约定命名为 Startup。 Startup 类:可选择性地包括 ... [详细]
  • 本文详细介绍了网络存储技术的基本概念、分类及应用场景。通过分析直连式存储(DAS)、网络附加存储(NAS)和存储区域网络(SAN)的特点,帮助读者理解不同存储方式的优势与局限性。 ... [详细]
  • Ihaveastringwithquotesaroundthepathasfollows:我在路径周围有一个带引号的字符串,如下所示:C:\ProgramFiles(x ... [详细]
  • 对象自省自省在计算机编程领域里,是指在运行时判断一个对象的类型和能力。dir能够返回一个列表,列举了一个对象所拥有的属性和方法。my_list[ ... [详细]
  • 在尝试使用C# Windows Forms客户端通过SignalR连接到ASP.NET服务器时,遇到了内部服务器错误(500)。本文将详细探讨问题的原因及解决方案。 ... [详细]
  • 深入理解Shell脚本编程
    本文详细介绍了Shell脚本编程的基础概念、语法结构及其在操作系统中的应用。通过具体的示例代码,帮助读者掌握如何编写和执行Shell脚本。 ... [详细]
  • Python处理Word文档的高效技巧
    本文详细介绍了如何使用Python处理Word文档,涵盖从基础操作到高级功能的各种技巧。我们将探讨如何生成文档、定义样式、提取表格数据以及处理超链接和图片等内容。 ... [详细]
  • 本文介绍如何使用MFC和ADO技术调用SQL Server中的存储过程,以查询指定小区在特定时间段内的通话统计数据。通过用户界面选择小区ID、开始时间和结束时间,系统将计算并展示小时级的通话量、拥塞率及半速率通话比例。 ... [详细]
  • 黑马头条项目:Vue 文章详情模块与交互功能实现
    本文详细介绍了如何在黑马头条项目中配置文章详情模块的路由、获取和展示文章详情数据,以及实现关注、点赞、不喜欢和评论功能。通过这些步骤,您可以全面了解如何开发一个完整的前端文章详情页面。 ... [详细]
  • 本文档介绍了如何在Visual Studio 2010环境下,利用C#语言连接SQL Server 2008数据库,并实现基本的数据操作,如增删改查等功能。通过构建一个面向对象的数据库工具类,简化了数据库操作流程。 ... [详细]
  • springMVC JRS303验证 ... [详细]
  • 本文详细介绍了Java集合框架中的Collection体系,包括集合的基本概念及其与数组的区别。同时,深入探讨了Comparable和Comparator接口的区别,并分析了各种集合类的底层数据结构。最后,提供了如何根据需求选择合适的集合类的指导。 ... [详细]
  • 配置Windows操作系统以确保DAW(数字音频工作站)硬件和软件的高效运行可能是一个复杂且令人沮丧的过程。本文提供了一系列专业建议,帮助你优化Windows系统,确保录音和音频处理的流畅性。 ... [详细]
  • 解析SQL查询结果的排序问题及其解决方案
    本文探讨了为什么某些SQL查询返回的数据集未能按预期顺序排列,并提供了详细的解决方案,帮助开发者理解并解决这一常见问题。 ... [详细]
author-avatar
hitwill
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有