2025-04-02 14:07:37 +08:00
|
|
|
#ifndef TACHOMETERDATA_H
|
|
|
|
#define TACHOMETERDATA_H
|
|
|
|
|
|
|
|
#include "cardbase.h"
|
2025-04-19 16:25:33 +08:00
|
|
|
#include <memory>
|
|
|
|
#include <vector>
|
2025-04-02 14:07:37 +08:00
|
|
|
|
|
|
|
class TachometerData : public CardBase {
|
|
|
|
public:
|
|
|
|
TachometerData();
|
|
|
|
|
|
|
|
TachometerVariables variables_[4];
|
2025-04-19 16:25:33 +08:00
|
|
|
SpeedAlert alert_danger[CHANNEL_COUNT];
|
2025-04-02 14:07:37 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // TACHOMETERDATA_H
|