QTBluetoothserver, SDP and other stuff
-
Hi, i want to create a Bluetooth Access point in a PC (1), send some data via a Java Android Application (2) and acccess all send data via QT5 project (3).
Point 2 is not a QT related question and i have it solved, but how do i have to implement 1 and 3 points? I've tried with QBluetoothServer (with this example: http://qt-project.org/doc/qt-5/qtbluetooth-btchat-chatserver-cpp.html ) but i am unable to get my SDP service public showed via Bluetooth adapter. It only registers the service in SDP (sdptool browse local):
@Service Name: Bt Chat Server
Service Description: Example bluetooth chat server
Service Provider: qt-project.org
Service RecHandle: 0x10006
Service Class ID List:
UUID 128: e8e10f95-1a70-4b27-9ccf-02010264e9c8
"Serial Port" (0x1101)
Protocol Descriptor List:
"L2CAP" (0x0100)
"RFCOMM" (0x0003)
Channel: 2
Profile Descriptor List:
"Serial Port" (0x1101)
Version: 0x0100
@Do i need to create my acces point manually? If so, how and how can i receive the send data in QT?
Thnak you very much.