summaryrefslogtreecommitdiffstats
path: root/src/bluetooth/qlowenergyservice.cpp
diff options
context:
space:
mode:
authorAlex Blasche <alexander.blasche@digia.com>2014-08-27 16:47:27 +0200
committerAlex Blasche <alexander.blasche@digia.com>2014-09-02 20:18:36 +0200
commitda7ccfcd08c587283f4656b30ca15011ebdbeb5c (patch)
treea17e33fb1459f932b0333e7c34b0f66c48777d24 /src/bluetooth/qlowenergyservice.cpp
parent695afdf1a50340018db68f08be4aed6978e89724 (diff)
Improve documentation on how to enable characteristic notifications
Change-Id: I87575fb7b5115a536e12c0a00374cc0e67428706 Reviewed-by: Lars Knoll <lars.knoll@digia.com>
Diffstat (limited to 'src/bluetooth/qlowenergyservice.cpp')
-rw-r--r--src/bluetooth/qlowenergyservice.cpp20
1 files changed, 19 insertions, 1 deletions
diff --git a/src/bluetooth/qlowenergyservice.cpp b/src/bluetooth/qlowenergyservice.cpp
index 7295bb87..9136f83b 100644
--- a/src/bluetooth/qlowenergyservice.cpp
+++ b/src/bluetooth/qlowenergyservice.cpp
@@ -100,6 +100,23 @@ QT_BEGIN_NAMESPACE
signal is emitted. A failure to write triggers the \l CharacteristicWriteError.
Writing a descriptor follows the same pattern.
+ \target notifications
+
+ In some cases the peripheral generates value updates which
+ the central is interested in receiving. In order for a characteristic to support
+ such notifications it must have the \l QLowEnergyCharacteristic::Notify or
+ \l QLowEnergyCharacteristic::Indicate property and a descriptor of type
+ \l QBluetoothUuid::ClientCharacteristicConfiguration. Provided those conditions
+ are fulfilled notifications can be enabled as shown in the following code segment:
+
+ \snippet doc_src_qtbluetooth.cpp enable_btle_notifications
+
+ The example shows a battery level characteristic which updates the central
+ on every value change. The notifications are provided via
+ the \l characteristicChanged() signal. More details about this mechanism
+ are provided by the
+ \l {https://developer.bluetooth.org/gatt/descriptors/Pages/DescriptorViewer.aspx?u=org.bluetooth.descriptor.gatt.client_characteristic_configuration.xml}{Bluetooth Specification}.
+
\section1 Service Data Sharing
Each QLowEnergyService instance shares its internal states and information
@@ -232,7 +249,8 @@ QT_BEGIN_NAMESPACE
The signal emission implies that change notifications must
have been activated via the characteristic's
\l {QBluetoothUuid::ClientCharacteristicConfiguration}{ClientCharacteristicConfiguration}
- descriptor prior to the change event on the peripheral.
+ descriptor prior to the change event on the peripheral. More details on how this might be
+ done can be found further \l{notifications}{above}.
*/
/*!