84 lines
3.2 KiB
C++
84 lines
3.2 KiB
C++
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
*
|
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
|
*
|
|
* This file is part of nymea.
|
|
*
|
|
* nymea is free software: you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public License
|
|
* as published by the Free Software Foundation, either version 3
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* nymea is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with nymea. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
/*!
|
|
\class BluetoothLowEnergyManager
|
|
\brief The BluetoothLowEnergyManager class helps to interact with Bluetooth LE devices.
|
|
|
|
\ingroup hardware
|
|
\inmodule libnymea
|
|
|
|
\sa HardwareResource
|
|
*/
|
|
|
|
/*! \fn BluetoothLowEnergyManager::~BluetoothLowEnergyManager();
|
|
The virtual destructor of the BluetoothLowEnergyManager.
|
|
*/
|
|
|
|
/*! \fn BluetoothDiscoveryReply *BluetoothLowEnergyManager::discoverDevices(int interval = 5000);
|
|
This method starts a Bluetooth discovery process running for \a interval milli seconds. Returns a BluetoothDiscoveryReply object
|
|
which will emits the \l{BluetoothDiscoveryReply::finished()}{finished()} signal when the
|
|
\l{BluetoothDiscoveryReply::discoveredDevices()}{discoveredDevices()} list is ready.
|
|
*/
|
|
|
|
/*! \fn BluetoothLowEnergyDevice *BluetoothLowEnergyManager::registerDevice(const QBluetoothDeviceInfo &deviceInfo, const QLowEnergyController::RemoteAddressType &addressType = QLowEnergyController::RandomAddress);
|
|
This method should be used to register a bluetooth device in your DevicePlugin. Returns a new BluetoothLowEnergyDevice object with the given \a deviceInfo and \a addressType.
|
|
*/
|
|
|
|
/*! \fn void BluetoothLowEnergyManager::unregisterDevice(BluetoothLowEnergyDevice *bluetoothDevice);
|
|
This method should be used to unregister the given \a bluetoothDevice in your DevicePlugin if you don't need it any more.
|
|
*/
|
|
|
|
|
|
#include "bluetoothlowenergymanager.h"
|
|
#include "loggingcategories.h"
|
|
|
|
/*! Constructs a \l{BluetoothLowEnergyManager} with the given \a parent. */
|
|
BluetoothLowEnergyManager::BluetoothLowEnergyManager(QObject *parent) :
|
|
HardwareResource("Bluetooth LE manager", parent)
|
|
{
|
|
}
|
|
|
|
|
|
/*! This method enables / disables this hardwareresource for all plugins. This method is available on the D-Bus. This can be useful if a Bluetooth LE server
|
|
needs access to the hardware. By disabling the bluetooth support, nymea will not allow to use the hardware until it gets reenabled.
|
|
*/
|
|
void BluetoothLowEnergyManager::EnableBluetooth(bool enabled)
|
|
{
|
|
setEnabled(enabled);
|
|
}
|
|
|
|
BluetoothPairingJob::BluetoothPairingJob(const QBluetoothAddress &address, QObject *parent):
|
|
QObject(parent),
|
|
m_address(address)
|
|
{
|
|
|
|
}
|
|
|
|
QBluetoothAddress BluetoothPairingJob::address() const
|
|
{
|
|
return m_address;
|
|
}
|
|
|