23#include <QBluetoothDeviceInfo>
24#include <QBluetoothLocalDevice>
25#include <QBluetoothServiceInfo>
26#include <QBluetoothPermission>
27#include <QBluetoothSocket>
28#include <QLowEnergyController>
30#include "traffic/TrafficDataSource_AbstractSocket.h"
32using namespace Qt::Literals::StringLiterals;
120 [[nodiscard]] QString
dataFormat()
const override {
return u
"FLARM/NMEA"_s; }
129 [[nodiscard]] QString
icon()
const override {
return u
"/icons/material/ic_bluetooth.svg"_s; }
167 void onCharacteristicChanged(
const QLowEnergyCharacteristic &characteristic,
const QByteArray &newValue);
170 void onErrorOccurred(QLowEnergyController::Error error);
172 void onServiceDiscoveryFinished();
174 void onServiceStateChanged(QLowEnergyService::ServiceState newState);
176 void onStateChanged(QLowEnergyController::ControllerState state);
182 QBluetoothPermission m_bluetoothPermission;
185 QBluetoothDeviceInfo m_info;
187 QLowEnergyController* m_control {
nullptr};
188 QLowEnergyService* m_nusService {
nullptr};
190 QBluetoothUuid
const nusServiceUuid {
"6e400001-b5a3-f393-e0a9-e50e24dcca9e"};
191 QBluetoothUuid
const txCharacteristicID {
"6e400003-b5a3-f393-e0a9-e50e24dcca9e"};
Connection to a traffic data receiver.
TrafficDataSource_AbstractSocket(bool isCanonical, QObject *parent)
Default constructor.
bool canonical
Canonicity.
QString icon() const override
Getter function for the property with the same name.
TrafficDataSource_BluetoothLowEnergy(bool isCanonical, const QBluetoothDeviceInfo &info, QObject *parent)
Default constructor.
QBluetoothDeviceInfo sourceInfo() const
Getter function for the property with the same name.
QString dataFormat() const override
Getter function for the property with the same name.
void connectToTrafficReceiver() override
Start attempt to connect to traffic receiver.
void disconnectFromTrafficReceiver() override
Disconnect from traffic receiver.
QString sourceName() const override
Getter function for the property with the same name.
Traffic::ConnectionInfo connectionInfo() const override
Getter function for the property with the same name.
QBluetoothDeviceInfo sourceInfo
Source info.