modanashar
modanashar

Reputation: 171

using Bluetooth LE from win32

Is there a way to use bluetooth LE from Win32? I can not find a single example nor proper documentation on how to use those BLE functions: https://learn.microsoft.com/en-us/windows-hardware/drivers/bluetooth/bluetooth-low-energy-functions

What I am trying to achieve is, to emulate a UART Serial interface over BLE. I know it would be much easier to use win sockets along with RFCOMM, but I am stuck with BLE.

I'm new to bluetooth programming on Windows, so I'd appreciate any help on how to get started with BLE using win32.

Upvotes: 3

Views: 3353

Answers (1)

liftarn
liftarn

Reputation: 445

You could use C++/WinRT to access the BLE functions. It would require that you drop support for older versions of MS Windows.

Upvotes: 0

Related Questions