Masterctrl/Sources/Chalet/ChaletLoraDevice.h
jfmartel d3d6e095d7 Réglé le problème de VOIP.ms Client.
Il a fallu que j'ajoute les DLL d'OPENSSL...
2020-07-12 12:09:38 -04:00

28 lines
480 B
C++

#ifndef CCHALETLORADEVICE_H
#define CCHALETLORADEVICE_H
#include "GlobalDefine.h"
#include "LoraDevice.h"
#include <QSerialPort>
#include <QTimer>
class CChaletLoraDevice : public QObject, public CLoraDevice
{
Q_OBJECT
public:
CChaletLoraDevice();
~CChaletLoraDevice();
int Init();
QTimer *mLoraStatusRefreshTimer;
private:
QSerialPort mLoraModuleSerialPort;
public slots:
void LoraStatusRefreshTimerExpired();
};
#endif // CCHALETLORADEVICE_H