mirror of
https://github.com/MikaylaFischler/cc-mek-scada.git
synced 2024-08-30 18:22:34 +00:00
28 lines
932 B
Lua
28 lines
932 B
Lua
local config = {}
|
|
|
|
-- port of the SCADA supervisor
|
|
config.SCADA_SV_PORT = 16100
|
|
-- port to listen to incoming packets from supervisor
|
|
config.SCADA_SV_LISTEN = 16101
|
|
-- listen port for SCADA coordinator API access
|
|
config.SCADA_API_LISTEN = 16200
|
|
-- expected number of reactor units, used only to require that number of unit monitors
|
|
config.NUM_UNITS = 4
|
|
-- graphics color
|
|
config.RECOLOR = true
|
|
-- alarm sounder volume (0.0 to 3.0, 1.0 being standard max volume, this is the option given to to speaker.play())
|
|
-- note: alarm sine waves are at half saturation, so that multiple will be required to reach full scale
|
|
config.SOUNDER_VOLUME = 1.0
|
|
-- log path
|
|
config.LOG_PATH = "/log.txt"
|
|
-- log mode
|
|
-- 0 = APPEND (adds to existing file on start)
|
|
-- 1 = NEW (replaces existing file on start)
|
|
config.LOG_MODE = 0
|
|
-- crypto config
|
|
config.SECURE = true
|
|
-- must be common between all devices
|
|
config.PASSWORD = "testpassword!"
|
|
|
|
return config
|