Update mtec plugin to libnyma-modbus

master
Simon Stürz 2022-05-06 11:53:49 +02:00
parent 43d1c1c413
commit 2c56f37041
4 changed files with 8 additions and 12 deletions

View File

@ -28,7 +28,8 @@
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include "network/networkdevicediscovery.h" #include <network/networkdevicediscovery.h>
#include "integrationpluginmtec.h" #include "integrationpluginmtec.h"
#include "plugininfo.h" #include "plugininfo.h"

View File

@ -30,8 +30,8 @@
#ifndef INTEGRATIONPLUGINMTEC_H #ifndef INTEGRATIONPLUGINMTEC_H
#define INTEGRATIONPLUGINMTEC_H #define INTEGRATIONPLUGINMTEC_H
#include "integrations/integrationplugin.h" #include <integrations/integrationplugin.h>
#include "plugintimer.h" #include <plugintimer.h>
#include "mtec.h" #include "mtec.h"

View File

@ -34,7 +34,7 @@
#include <QDateTime> #include <QDateTime>
#include <QObject> #include <QObject>
#include "../modbus/modbustcpmaster.h" #include <modbustcpmaster.h>
class MTec : public QObject class MTec : public QObject
{ {

View File

@ -1,16 +1,11 @@
include(../plugins.pri) include(../plugins.pri)
include(../modbus.pri)
QT += \
network \
serialbus \
SOURCES += \ SOURCES += \
mtec.cpp \ mtec.cpp \
integrationpluginmtec.cpp \ integrationpluginmtec.cpp
../modbus/modbustcpmaster.cpp
HEADERS += \ HEADERS += \
mtec.h \ mtec.h \
integrationpluginmtec.h \ integrationpluginmtec.h
../modbus/modbustcpmaster.h \