lv92
lv92

Reputation: 161

Bluetooth library cross platform in c ++

is there any library cross platform written in c++ that permit to know the list of devices that are connected to this pc?

Upvotes: 3

Views: 4100

Answers (3)

fuzzyTew
fuzzyTew

Reputation: 3768

Here are some additional libraries, none of which are really production-ready:

Is anybody aware of any other possibly in-progress cross-platform bluetooth libraries?

Upvotes: 2

uchar
uchar

Reputation: 2590

Since Qt5.2 you can use Qt bluetooth library : http://doc.qt.io/qt-5/qtbluetooth-module.html

Upvotes: 0

Ed of the Mountain
Ed of the Mountain

Reputation: 5459

Qt5.2 and Qt5.4 Bluetooth cross platform support is * * very * * limited.

Qt 5.4 Bluetooth support is implemented only for Android and Linux (BlueZ 4.x/5.x). I guess BlackBerry 10 is included too since it is QNX based.

There is no mention of planned Qt Bluetooth support for either Windows, OSX, or iOS.

See: Qt Bluetooth

-Ed

Upvotes: 1

Related Questions