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-20 15:08:00 +02:00

9 lines
153 B
C++

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