views:

191

answers:

2

I am making a desktop application to connect with an embedded device. I was going to use Windows but due to lack of proper examples and documentation I decided to go with Linux bluez development. Can someone suggest a good resource to go about programming for bluez. I found a MIT documentation but that was about it.

+1  A: 

bluez uses D-Bus for communication. Use D-Feet to inspect the org.bluez interface so that you can write against the D-Bus API appropriately.

Ignacio Vazquez-Abrams
thanx, can you tell me where is the official documentation for bluez stack?
sfactor
In the wiki. http://wiki.bluez.org/
Ignacio Vazquez-Abrams
A: 

There is quite good book Bluetooth Essentials for Programmers. It has section for both Windows and Linux bluetooth stack. At least you can look at sources of chapter examples on the book site.

lazyden