TSI_Config/data_config.h

24 lines
370 B
C
Raw Normal View History

2025-02-15 11:50:15 +08:00
#ifndef DATA_CONFIG_H
#define DATA_CONFIG_H
#include <QString>
#include <QPushButton>
typedef struct {
int slot;
int slot_type;
QString chan_display;
QString rack_type;
QPushButton* slot_btn;
}SlotConfig;
enum SlotType{
POWER = 10,
CONFIG = 20,
KEYPHASOR = 25,
RELAY = 30,
VIBRATE = 40,
RPM = 50
};
#endif // DATA_CONFIG_H