forked from Sepanta/console-emulator
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.
30 lines
486 B
30 lines
486 B
10 months ago
|
#ifndef DropDown_H
|
||
|
#define DropDown_H
|
||
|
|
||
|
#define PROTOCOL_LENGTH 8
|
||
|
#define MESSAGE_DIRECTION 0x00
|
||
|
#define DropDownDataLength 0x02
|
||
|
#define DropDownType 0x03
|
||
|
#define ProbA 0x00
|
||
|
#define ProbB 0x01
|
||
|
#define ProbNC 0x02
|
||
|
#define TIME_TAG 0x00
|
||
|
|
||
|
#include "Led.h"
|
||
|
|
||
|
class DropDown
|
||
|
{
|
||
|
private:
|
||
|
char _functionCode;
|
||
|
Led _led;
|
||
|
|
||
|
public:
|
||
|
DropDown(char functionCode);
|
||
|
DropDown(char functionCode, char ledFunctionCode);
|
||
|
|
||
|
Led* getLed();
|
||
|
QByteArray select(int value);
|
||
|
};
|
||
|
|
||
|
#endif //DropDown_H
|