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/core.cpp
2017-10-25 21:07:05 +02:00

9 lines
182 B
C++

#include "core.h"
#include <QDebug>
Core::Core(const int &channel, QObject *parent) :
QObject(parent)
{
m_manager = new ZigbeeNetworkManager(channel, "/dev/ttyS0", this);
}