This commit is contained in:
2025-06-15 16:23:13 -04:00
parent dcb75ee52c
commit ead0e6379e
9 changed files with 118 additions and 108 deletions

View File

@@ -30,17 +30,21 @@ local function watch()
end
end
-- local function watch()
-- checkCoolantLevel()
-- end
local function startUp()
end
local function shutdown()
end
local function report()
local value = getValue()
local color = colors.black
monitor.setBackgroundColor(color)
monitor.clearLine()
setNewLine()
monitor.write("Coolant: " .. value .. "%")
end
return { report = report, watch = watch}
return { report = report, watch = watch, startUp = startUp, shutdown = shutdown }