You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
429 B
22 lines
429 B
#ifndef RELAYBOARD_H
|
|
#define RELAYBOARD_H
|
|
|
|
#include "model/hardware/core/IBoard.h"
|
|
|
|
class RelayBoard : public IBoard
|
|
{
|
|
private:
|
|
QString _name;
|
|
QString _version;
|
|
quint32 _baseAddress;
|
|
|
|
public:
|
|
RelayBoard();
|
|
virtual QString getName();
|
|
virtual QString getVersion();
|
|
virtual bool selfTest();
|
|
virtual bool updateInfo();
|
|
virtual bool updateStatus();
|
|
};
|
|
|
|
#endif // RELAYBOARD_H
|
|
|