This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
powersync-zigbee/zigbeemanager.h
2017-10-17 14:54:17 +02:00

28 lines
466 B
C++

#ifndef ZIGBEEMANAGER_H
#define ZIGBEEMANAGER_H
#include <QObject>
#include "zigbeeinterface.h"
class ZigbeeManager : public QObject
{
Q_OBJECT
public:
explicit ZigbeeManager(const QString &serialPort = "/dev/ttyS0", QObject *parent = nullptr);
QString serialPort() const;
void setSerialPort(const QString &serialPort);
private:
ZigbeeInterface *m_interface;
QString m_serialPort;
signals:
public slots:
};
#endif // ZIGBEEMANAGER_H