LedDisplay/OmobiDisplayApp/omobidisplaybackend.h
2020-10-08 22:03:30 +02:00

28 lines
551 B
C++

#ifndef OMOBIDISPLAYBACKEND_H
#define OMOBIDISPLAYBACKEND_H
#include <QObject>
#include <qbluetoothleuart.h>
class OmobiDisplayBackend : public QObject
{
Q_OBJECT
public:
explicit OmobiDisplayBackend(QObject *parent = nullptr);
void startScanning();
private:
QBluetoothLeUart *ble;
private slots:
void handleBluetoothStateChange(QBluetoothLeUart::BluetoothLeUartState state);
void handleFoundNewDevice(QBluetoothLeUartDevice* device);
void DataHandler(const QString &s);
signals:
};
#endif // OMOBIDISPLAYBACKEND_H