-
I'm planning to use Bluetooth with my .Net Console Application. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 9 replies
-
32feet.NET (I have no experience with this library myself, it just appeared multiple times in the search result when googling for "C# bluetooth", and it is actively maintained as far as i can tell...) |
Beta Was this translation helpful? Give feedback.
-
I believe this is too specific to include in the .NET Base Class Libraries. |
Beta Was this translation helpful? Give feedback.
You do not have to use UWP or MAUI to use Windows SDK.
For example, this console app is going to enumerate all devices on the system:
(Make sure to have -windows target framework in your .csproj file. Like
<TargetFramework>net8.0-windows10.0.19041.0</TargetFramework>
.)https://github.com/dotnet/iot is probably the best repo in the dotnet org to discuss a d…