45 lines
935 B
C++
45 lines
935 B
C++
#ifndef BLUETOOTHINTERFACE_H
|
|
#define BLUETOOTHINTERFACE_H
|
|
|
|
#include <QObject>
|
|
#include <QBluetoothSocket>
|
|
|
|
#include "guhinterface.h"
|
|
#include "discovery/bluetoothdiscovery.h"
|
|
|
|
class BluetoothInterface : public GuhInterface
|
|
{
|
|
Q_OBJECT
|
|
Q_PROPERTY(BluetoothDiscovery *discovery READ discovery CONSTANT)
|
|
|
|
public:
|
|
explicit BluetoothInterface(QObject *parent = 0);
|
|
|
|
void sendData(const QByteArray &data) override;
|
|
void sendRequest(const QVariantMap &request) override;
|
|
|
|
BluetoothDiscovery *discovery();
|
|
|
|
private:
|
|
QBluetoothSocket *m_socket;
|
|
QBluetoothServiceInfo m_service;
|
|
|
|
BluetoothDiscovery *m_discovery;
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
Q_INVOKABLE void enable() override;
|
|
Q_INVOKABLE void disable() override;
|
|
|
|
private slots:
|
|
void onServiceFound(const QBluetoothServiceInfo &service);
|
|
void onConnected();
|
|
void onDisconnected();
|
|
|
|
void onDataReady();
|
|
|
|
};
|
|
|
|
#endif // BLUETOOTHINTERFACE_H
|