21 lines
506 B
C++
21 lines
506 B
C++
#ifndef TACHOMETERDATA_H
|
|
#define TACHOMETERDATA_H
|
|
|
|
#include "cardbase.h"
|
|
#include <memory>
|
|
#include <vector>
|
|
|
|
class TachometerData : public CardBase {
|
|
public:
|
|
TachometerData();
|
|
|
|
TachometerVariables variables_[4];
|
|
SpeedAlert alert_danger[CHANNEL_COUNT];
|
|
AlarmDangerHigh danger_high[CHANNEL_COUNT_SPEED];
|
|
AlarmAlertHigh alert_high[CHANNEL_COUNT_SPEED];
|
|
AlarmDangerLow danger_low[CHANNEL_COUNT_SPEED];
|
|
AlarmAlertLow alert_low[CHANNEL_COUNT_SPEED];
|
|
};
|
|
|
|
#endif // TACHOMETERDATA_H
|