Bluetooth APIs in Windows/.Net? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T05:58:05Z http://stackoverflow.com/feeds/question/144862 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/144862/bluetooth-apis-in-windows-net 8 Bluetooth APIs in Windows/.Net? cjkarr 2008-09-28T00:30:33Z 2008-11-20T20:24:51Z <p>I am in the process of writing a Bluetooth scanner that locates and identifies mobile devices in the local vicinity. Is this something that I can accomplish using C#, or do I need to drop down into the C/C++ APIs? My application is targeting Windows XP and Vista. Pointers are appreciated.</p> <p>Thanks!</p> http://stackoverflow.com/questions/144862/bluetooth-apis-in-windows-net/144899#144899 2 Answer by Erik for Bluetooth APIs in Windows/.Net? Erik 2008-09-28T00:53:11Z 2008-09-28T00:53:11Z <p>The only managed BlueTooth APIs I could find reference to are <a href="http://www.microsoft.com/express/samples/c4fdevkit/Default.aspx" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/144862/bluetooth-apis-in-windows-net/144910#144910 3 Answer by Kyle for Bluetooth APIs in Windows/.Net? Kyle 2008-09-28T01:01:01Z 2008-09-28T01:01:01Z <p>There is also Peter Foot's 32feet.net</p> <p><a href="http://inthehand.com/content/32feet.aspx" rel="nofollow">http://inthehand.com/content/32feet.aspx</a></p> <p>I've played around with this back when it was v1.5 and it worked well.</p> http://stackoverflow.com/questions/144862/bluetooth-apis-in-windows-net/144948#144948 6 Answer by Andrew Queisser for Bluetooth APIs in Windows/.Net? Andrew Queisser 2008-09-28T01:30:15Z 2008-09-28T02:08:48Z <p>One problem with Bluetooth on the PC is that there are several BT stacks in use and you can never quite know which one is available on a given machine. The most common ones are Widcomm (now Broadcom) and Microsoft (appeared in XP, maybe one of the service packs). However, some BT hardware vendors package BlueSoleil and some use Toshiba. Most dongles will work with the MS stack so the .NET libs I've seen tend to use that.</p> <p>Each of the stacks has a totally different way of doing the discovery part where you browse for nearby devices and inquire their services.</p> <p>If I had to pick one approach today I'd probably do the discovery in C++ and add an interface for .NET.</p> <p>The 32feet.net stuff worked pretty well when I tried it but didn't support the Widcomm stack.</p> http://stackoverflow.com/questions/144862/bluetooth-apis-in-windows-net/306746#306746 3 Answer by Guge for Bluetooth APIs in Windows/.Net? Guge 2008-11-20T20:24:51Z 2008-11-20T20:24:51Z <p><a href="http://www.btframework.com/" rel="nofollow">Mike Petrichenko</a> has a nice BT framework. It works with BlueSoleil, Widcomm, Toshiba and Microsoft.</p>