bugfix with reset/ack button mappings on coordinator GUI

This commit is contained in:
Mikayla Fischler 2022-11-27 22:53:44 -05:00
parent afb3b0957e
commit 9c27ac7ae6
2 changed files with 3 additions and 3 deletions

View File

@ -62,8 +62,8 @@ function iocontrol.init(conf, comms)
alarm_callbacks = {
c_breach = { ack = function () ack(1) end, reset = function () reset(1) end },
radiation = { ack = function () ack(2) end, reset = function () reset(2) end },
dmg_crit = { ack = function () ack(3) end, reset = function () reset(3) end },
r_lost = { ack = function () ack(4) end, reset = function () reset(4) end },
r_lost = { ack = function () ack(3) end, reset = function () reset(3) end },
dmg_crit = { ack = function () ack(4) end, reset = function () reset(4) end },
damage = { ack = function () ack(5) end, reset = function () reset(5) end },
over_temp = { ack = function () ack(6) end, reset = function () reset(6) end },
high_temp = { ack = function () ack(7) end, reset = function () reset(7) end },

View File

@ -17,7 +17,7 @@ local config = require("coordinator.config")
local coordinator = require("coordinator.coordinator")
local renderer = require("coordinator.renderer")
local COORDINATOR_VERSION = "alpha-v0.7.0"
local COORDINATOR_VERSION = "alpha-v0.7.1"
local print = util.print
local println = util.println