BluezQt::LEAdvertisingManager Class

class BluezQt::LEAdvertisingManager

Bluetooth LE advertising manager. More...

Header: #include <BluezQt/LEAdvertisingManager>
CMake: find_package(KF6 REQUIRED COMPONENTS BluezQt)
target_link_libraries(mytarget PRIVATE KF6::BluezQt)
Inherits: QObject

Public Functions

BluezQt::PendingCall *registerAdvertisement(BluezQt::LEAdvertisement *advertisement)
BluezQt::PendingCall *unregisterAdvertisement(BluezQt::LEAdvertisement *advertisement)

Detailed Description

The Advertising Manager allows external applications to register Advertisement Data which should be broadcast to devices. Advertisement Data elements must follow the API for LE Advertisement Data.

See also LEAdvertisement.

Member Function Documentation

BluezQt::PendingCall *LEAdvertisingManager::registerAdvertisement(BluezQt::LEAdvertisement *advertisement)

Registers an advertisement object to be sent over the LE Advertising channel.

The service must be exported under interface LEAdvertisement1.

InvalidArguments error indicates invalid or conflicting properties.

InvalidLength error indicates that provided data results in too long data packet.

The properties of this object are parsed on register, any changes are ignored.

If the same object is registered twice it will result in an AlreadyExists error.

NotPermitted error indicates that the maximum number of advertisements is reached.

Possible errors:

Returns void pending call.

BluezQt::PendingCall *LEAdvertisingManager::unregisterAdvertisement(BluezQt::LEAdvertisement *advertisement)

Unregisters advertisement.

This unregisters an advertisement that has been previously registered. The object path must match the same value that has been used on registration.

Possible errors:

Returns void pending call.