27 lines
646 B
C++
27 lines
646 B
C++
#ifndef CCHALETINTERFACE_H
|
|
#define CCHALETINTERFACE_H
|
|
|
|
#include "NetworkDevice.h"
|
|
|
|
#include "ChaletLoraDevice.h"
|
|
|
|
class CChaletInterface: public QObject, public CNetworkDevice
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
|
|
CChaletInterface(int Address, CAbstractNetworkCommIF *NetworkInterface, CChaletLoraDevice *DevicePtr);
|
|
virtual int NewDeviceFrameReceived(int DeviceID, int DeviceAddress, int MessageID, int DataSize, QByteArray Data);
|
|
|
|
void SendChaletCommActivityBeacon();
|
|
private:
|
|
CChaletLoraDevice *mChaletLoraDevice;
|
|
CChaletDataLogger *mChaletDataLogger;
|
|
|
|
public slots:
|
|
void DeviceWiFiDataReceived();
|
|
|
|
};
|
|
|
|
#endif // CCHALETINTERFACE_H
|