Loading...
Searching...
No Matches
PhidgetsDevice.hpp
1#pragma once
2#include <Device/Protocol/DeviceInterface.hpp>
3
4namespace Protocols
5{
7{
8 W_OBJECT(PhidgetDevice)
9public:
11
12 bool reconnect() override;
13
14public:
15 void sig_command() W_SIGNAL(sig_command);
16
17private:
18 void slot_command();
19 W_SLOT(slot_command);
20
21private:
22 void timerEvent(QTimerEvent* event) override;
23 int m_timer{-1};
24};
25}
Definition DeviceInterface.hpp:185
Definition PhidgetsDevice.hpp:7
Definition DeviceSettings.hpp:20