Bluetooth 4.0 (low energy) API for windows desktop C# application

喜夏-厌秋 提交于 2020-01-11 05:13:26

问题


I am looking for a way to interface with an Adafruit bluefruit LE (nRF8001 chipset) board, using c# in a windows desktop app (From what I've seen, I cannot use the Windows.Devices namespace without hacking it in.)

The device is properly paired to my tablet and seems to have no problems there, I'm just looking for a way to receive data from it in my program.

There has to be a way to do this, I cant think that Microsoft would limit using bluetooth to metro apps only, I just cant find it.


回答1:


So, for posterity:

  1. Everywhere on the net says to put the below in your csproj file:

    <PropertyGroup> <TargetPlatformVersion>8.0</TargetPlatformVersion> </PropertyGroup>

This is actually incorrect if you are running windows 8.1, you have to put 8.1 there instead of 8.0. This change will allow you to reference the "Windows" assembly in the windows -> core section of the references dialog. Putting 8.0 there gets you a bunch of other things there that you don't want.

  1. you also have to reference this dll:

C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework.NETCore\v4.5.1\System.Runtime.WindowsRuntime.dll

Which contains extension methods that allow you to use regular await calls on Windows.Foundation.IAsyncOperation instances. This is required because those instances don't contain the GetAwaiter method that the await keyword looks for.

After that you should be able to use the WinRT API in your desktop application.



来源:https://stackoverflow.com/questions/28256102/bluetooth-4-0-low-energy-api-for-windows-desktop-c-sharp-application

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!