BluetoothDiscoveryModel QML Type

Enables searching for the Bluetooth devices and services in range. More...

Import Statement: import QtBluetooth 5.15
Since: Qt 5.2

Properties

Signals

Detailed Description

BluetoothDiscoveryModel provides a model of connectable services. The contents of the model can be filtered by UUID allowing discovery to be limited to a single service such as a game.

The model roles provided by BluetoothDiscoveryModel are service, name, remoteAddress and deviceName. The meaning of the roles changes based on the current discoveryMode.

Model roleDevice DiscoveryService Discovery
nameThe device's name and address.The service name and the name of the device offering the service. If the device name is empty the devices address will be used.
deviceNameThe name of the device.The name of the device offering the service.
serviceThe role is undefined in this mode.The BluetoothService object describing the discovered service.
remoteAddressThe address of the found device.The address of the device offering the service.

See also QBluetoothServiceDiscoveryAgent.

Property Documentation

discoveryMode : enumeration

Sets the discovery mode. The discovery mode has to be set before the discovery is started

PropertyDescription
BluetoothDiscoveryModel.FullServiceDiscoveryStarts a full discovery of all services of all devices in range.
BluetoothDiscoveryModel.MinimalServiceDiscovery(Default) Starts a minimal discovery of all services of all devices in range. A minimal discovery is faster but only guarantees the device and UUID information to be correct.
BluetoothDiscoveryModel.DeviceDiscoveryDiscovers only devices in range. The service role will be 0 for any model item.

error : enumeration

This property holds the last error reported during discovery.

PropertyDescription
BluetoothDiscoveryModel.NoErrorNo error occurred.
BluetoothDiscoveryModel.InputOutputErrorAn IO failure occurred during device discovery
BluetoothDiscoveryModel.PoweredOffErrorThe bluetooth device is not powered on.
BluetoothDiscoveryModel.InvalidBluetoothAdapterErrorThere is no default Bluetooth device to perform the service discovery. The model always uses the local default adapter. Specifying a default adapter is not possible. If that's required, QBluetoothServiceDiscoveryAgent should be directly used. This value was introduced by Qt 5.4.
BluetoothDiscoveryModel.UnknownErrorAn unknown error occurred.

This property is read-only.


remoteAddress : string

This property holds an optional bluetooth address for a remote bluetooth device. Only services on this remote device will be discovered. It has no effect if an invalid bluetooth address was set or if the property was set after the discovery was started.

The property is ignored if device discovery is selected.


running : bool

This property starts or stops discovery. A restart of the discovery process requires setting this property to false and subsequently to true again.


uuidFilter : string

This property holds an optional UUID filter. A UUID can be used to return only matching services. 16 bit, 32 bit or 128 bit UUIDs can be used. The string format is same as the format of QUuid.

See also QBluetoothUuid and QUuid.


Signal Documentation

deviceDiscovered(string device)

This signal is emitted when a new device is discovered. device contains the Bluetooth address of the discovered device.

The corresponding handler is onDeviceDiscovered.

Note: The corresponding handler is onDeviceDiscovered.


serviceDiscovered(BluetoothService service)

This signal is emitted when a new service is discovered. The service parameter contains the service details.

The corresponding handler is onServiceDiscovered.

Note: The corresponding handler is onServiceDiscovered.

See also BluetoothService.