qtconnectivity/tests/bttestui
Alex Blasche 3ab608cfce Fix usage of renamed error signal
qrc:/main.qml:62:9: Cannot assign to non-existent property "onError"
             onError: errorText.text = evaluateError(error)

Change-Id: I1638a5caa2f5c35d571b9876e5d6195fd3ac4357
Reviewed-by: Timur Pocheptsov <timur.pocheptsov@qt.io>
2021-04-16 19:32:32 +02:00
..
Button.qml Updated license headers 2016-01-20 20:14:38 +00:00
CMakeLists.txt Remove all *.pro files and all "special case" markers in CMakeLists.txt 2021-01-15 13:57:26 +01:00
README Add extensive test application for QtBluetooth 2014-02-15 21:57:12 +01:00
btlocaldevice.cpp Change QBluetooth::Security and AttAcc. to be a scoped enums 2021-03-30 14:38:51 +02:00
btlocaldevice.h Change QBluetooth::Security and AttAcc. to be a scoped enums 2021-03-30 14:38:51 +02:00
bttest.qrc Add extensive test application for QtBluetooth 2014-02-15 21:57:12 +01:00
main.cpp Fix a few clazy warnings 2019-01-11 11:31:33 +00:00
main.qml Fix usage of renamed error signal 2021-04-16 19:32:32 +02:00

README

This application is a graphical test application for Bluetooth.
It is able to invoke close to all API features offered by the QtBluetooth API.
It includes features like:

1.) Turning Bluetooth on/off
2.) Pairing with remote devices
3.) Discovery of services and devices
4.) Connecting to a remote SPP profile using RFCOMM
5.) Start of a SPP Bluetooth server

Some features require interaction with remote devices. In particular this involves
pairing and the direct connecting to remote SPP servers. The remote test device address
is hardcoded via BTCHAT_DEVICE_ADDR.

Also, the test application reuses the service uuid employed by the btchat example
(see examples/bluetooth/btchat). It can either directly connect to the remote
btchat app server or create its own btchat server.

Note that the application is purposely very liberal with regards to the amount of its
debug output. This is done to be able to confirm proper working of the tested
APIs.