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