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.
24 lines
346 B
24 lines
346 B
4 years ago
|
#ifndef LED_H
|
||
|
#define LED_H
|
||
|
|
||
|
#include <QObject>
|
||
|
#include <QMap>
|
||
|
|
||
|
#include "model/csm/type/EConsole.h"
|
||
|
|
||
|
typedef struct LedStatus_T
|
||
|
{
|
||
|
EConsole::eConsoleState csmState;
|
||
|
QString probType;
|
||
|
quint8 value;
|
||
|
}LedStatus_T;
|
||
|
|
||
|
typedef struct Led_t
|
||
|
{
|
||
|
QString name;
|
||
|
quint8 functionCode;
|
||
|
QList<LedStatus_T> ledStatus;
|
||
|
}Led_t;
|
||
|
|
||
|
#endif //LED_H
|