Linux Programming

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

+3
source share
3 answers

bluez uses D-Bus for communication. Use D-Feet to test the interface org.bluezso you can write against the D-Bus API accordingly.

+2
source

There is a good book Basic Bluetooth Features for Programmers . It has a section for the Bluetooth and Windows and Linux stack. At the very least, you can look at the sources of examples of chapters on the book's website.

0
source

Source: https://habr.com/ru/post/1739052/


All Articles