shared global types

This commit is contained in:
Mikayla Fischler
2022-05-03 10:44:18 -04:00
parent 62b4b63f4a
commit c76200b0e3
4 changed files with 41 additions and 14 deletions

20
scada-common/types.lua Normal file
View File

@ -0,0 +1,20 @@
-- Global Types
rtu_t = {
redstone = "redstone",
boiler = "boiler",
turbine = "turbine",
energy_machine = "emachine",
induction_matrix = "imatrix"
}
iss_status_t = {
ok = "ok",
dmg_crit = "dmg_crit",
ex_hcoolant = "heated_coolant_backup",
ex_waste = "full_waste",
high_temp = "high_temp",
no_fuel = "no_fuel",
no_coolant = "no_coolant",
timeout = "timeout"
}