This commit is contained in:
2025-06-14 17:53:47 -04:00
parent 7000c008ef
commit a6e5fe9e90
5 changed files with 8 additions and 9 deletions

View File

@@ -22,14 +22,14 @@ end
local function watch()
end
function stepUp()
local function stepUp()
-- local value = getValue()
-- if value < max then
-- reactor.setBurnRate(value + rateStep)
-- end
end
function stepDown()
local function stepDown()
-- local value = getValue()
-- if value > min then
-- reactor.setBurnRate(value - rateStep)
@@ -43,4 +43,4 @@ local function report()
monitor.clearLine()
monitor.write("Burn Rate: " .. value)
end
return { report = report, watch = watch }
return { report = report, watch = watch, stepUp = stepUp, stepDown = stepDown }