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.
23 lines
346 B
23 lines
346 B
#ifndef PUSHBUTTON_H
|
|
#define PUSHBUTTON_H
|
|
|
|
#include "Led.h"
|
|
|
|
class PushButton
|
|
{
|
|
private:
|
|
char _functionCode;
|
|
Led _led;
|
|
|
|
QByteArray generateCode(bool isPressed);
|
|
|
|
public:
|
|
PushButton(char functionCode);
|
|
PushButton(char functionCode, char ledFunctionCode);
|
|
|
|
QByteArray press();
|
|
QByteArray release();
|
|
Led* getLed();
|
|
};
|
|
|
|
#endif //PUSHBUTTON_H
|
|
|