The QLowEnergyServiceData class is used to set up GATT service data. More...
Header: | #include <QLowEnergyServiceData> |
qmake: | QT += bluetooth |
Since: | Qt 5.7 |
enum | ServiceType { ServiceTypePrimary, ServiceTypeSecondary } |
QLowEnergyServiceData(const QLowEnergyServiceData &other) | |
QLowEnergyServiceData() | |
QLowEnergyServiceData & | operator=(const QLowEnergyServiceData &other) |
~QLowEnergyServiceData() | |
void | addCharacteristic(const QLowEnergyCharacteristicData &characteristic) |
void | addIncludedService(QLowEnergyService *service) |
QList<QLowEnergyCharacteristicData> | characteristics() const |
QList<QLowEnergyService *> | includedServices() const |
bool | isValid() const |
void | setCharacteristics(const QList<QLowEnergyCharacteristicData> &characteristics) |
void | setIncludedServices(const QList<QLowEnergyService *> &services) |
void | setType(QLowEnergyServiceData::ServiceType type) |
void | setUuid(const QBluetoothUuid &uuid) |
void | swap(QLowEnergyServiceData &other) |
QLowEnergyServiceData::ServiceType | type() const |
QBluetoothUuid | uuid() const |
bool | operator!=(const QLowEnergyServiceData &a, const QLowEnergyServiceData &b) |
bool | operator==(const QLowEnergyServiceData &a, const QLowEnergyServiceData &b) |
An Object of this class provides a service to be added to a GATT server via QLowEnergyController::addService().
The type of GATT service.
Constant | Value | Description |
---|---|---|
QLowEnergyServiceData::ServiceTypePrimary |
0x2800 |
The service is a primary service. |
QLowEnergyServiceData::ServiceTypeSecondary |
0x2801 |
The service is a secondary service. Secondary services are included by other services to implement some higher-level functionality. |
Constructs a new object of this class that is a copy of other.
Creates a new invalid object of this class.
Makes this object a copy of other and returns the new value of this object.
Destroys this object.
Adds characteristic to the list of characteristics, if it is valid.
See also setCharacteristics().
Adds service to the list of included services. The service object must have been returned from a call to QLowEnergyController::addService. This requirement prevents circular includes (which are forbidden by the Bluetooth specification), and also helps to support the use case of including more than one service of the same type.
See also setIncludedServices().
Returns the list of characteristics.
See also setCharacteristics().
Returns the list of included services.
See also setIncludedServices().
Returns true
if this service is has a non-null UUID.
Sets the list of characteristics to characteristics. Only valid characteristics are considered.
See also characteristics() and addCharacteristic().
Sets the list of included services to services. All objects in this list must have been returned from a call to QLowEnergyController::addService.
See also includedServices() and addIncludedService().
Sets the type of this service to type.
See also type().
Sets the UUID of this service to uuid.
See also uuid().
Swaps this object with other.
Returns the type of this service.
See also setType().
Returns the UUID of this service.
See also setUuid().
Returns true
if a and b are unequal with respect to their public state, otherwise returns false
.
Returns true
if a and b are equal with respect to their public state, otherwise returns false
.
© The Qt Company Ltd
Licensed under the GNU Free Documentation License, Version 1.3.
https://doc.qt.io/qt-6.2/qlowenergyservicedata.html