diff --git a/data_config.h b/data_config.h new file mode 100644 index 0000000..cbbec9e --- /dev/null +++ b/data_config.h @@ -0,0 +1,23 @@ +#ifndef DATA_CONFIG_H +#define DATA_CONFIG_H +#include +#include + +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