Files
novikova/cmdwrd.h
2025-07-23 12:34:16 +03:00

27 lines
521 B
C++

#ifndef CMDWRD_H
#define CMDWRD_H
#include "declaration.h"
class CommandWord:public QObject
{
Q_OBJECT
public:
unsigned char DeviceAddress;
unsigned char K;
unsigned char SubAdd_CtrlMode;
unsigned char NumData_CmdCode;
void description(QString CmdW);
unsigned char AddressFind(int cmdw);
unsigned char ResTranFind(int cmdw);
unsigned char SubadContrlModeFind(int cmdw);
unsigned char NumDataWCodeCCFind(int cmdw);
CommandWord();
~CommandWord();
};
#endif // CMDWRD_H