Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MS Bluetooth stack documentation

I want to develop a Bluetooth application for Windows 7. Where could I find a proper documentation, tutorials and so on? My intention is to use Microsoft stack.

The MSDN is sterile about this topic, in the sense that they have a long list of Windows API functions for Bluetooth with brief descriptions, but with no logical start and end. Until now the best valuable resource found by me is a web tutorial:

http://www.winsocketdotnetworkprogramming.com/winsock2programming/winsock2advancedotherprotocol4j.html

Any other ideas?

Thnx

like image 716
garzanti Avatar asked Jan 16 '11 19:01

garzanti


People also ask

What is Microsoft Bluetooth stack?

The Bluetooth driver stack comprises the core portion of the support provided by Microsoft for the Bluetooth protocol. With this stack, Bluetooth-enabled devices can locate each other and establish connections.

How do I install Microsoft Bluetooth driver?

Tap on Windows key and letter X on your keyboard and choose Settings, Once the Windows Settings screen is up click on Devices, On Bluetooth and Other Devices, you should be able to toggle it on and off and add a Bluetooth device.


1 Answers

If you want some examples of the MS stack in action, check out the source for the BlueCove project. It's a complete implementation of JSR-82 (the Java BT interface) written to use a variety of stacks, including MS. For example, this file exercises lots of the stack.

like image 53
pwc Avatar answered Oct 20 '22 08:10

pwc