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.
34 lines
462 B
34 lines
462 B
#ifndef LED_H
|
|
#define LED_H
|
|
|
|
#define LedOFF 0x00
|
|
#define LedColorWhite 0x01
|
|
#define LedColorGreen 0x02
|
|
#define FunctionCode 3
|
|
#define LedColor 4
|
|
|
|
#include <QObject>
|
|
|
|
#include "Logger.h"
|
|
|
|
class Led : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
private:
|
|
char _functionCode;
|
|
bool _hasLed;
|
|
Logger* _logger;
|
|
|
|
public:
|
|
Led();
|
|
Led(char functionCode);
|
|
|
|
signals:
|
|
void ledChanged(char value);
|
|
|
|
public slots:
|
|
void newData(QByteArray data);
|
|
};
|
|
|
|
#endif //LED_H
|
|
|