#ifndef RotaryButton_H #define RotaryButton_H #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