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.
26 lines
439 B
26 lines
439 B
#ifndef RotaryButton_H
|
|
#define RotaryButton_H
|
|
|
|
#define ProtocolLength 8
|
|
#define ConsoleDirection 0x00
|
|
#define RotaryDataLength 0X02
|
|
#define RotaryType 0x05
|
|
#define TimeTag 0x00
|
|
|
|
#include "Led.h"
|
|
|
|
class RotaryButton
|
|
{
|
|
private:
|
|
char _functionCode;
|
|
Led _led;
|
|
|
|
public:
|
|
RotaryButton(char functionCode);
|
|
RotaryButton(char functionCode, char ledFunctionCode);
|
|
|
|
Led* getLed();
|
|
QByteArray rotate(int value);
|
|
};
|
|
|
|
#endif //RotaryButton_H
|
|
|