updated all

This commit is contained in:
2025-06-14 18:10:46 -04:00
parent 2515a47860
commit 0ba9b3d1ce
6 changed files with 62 additions and 52 deletions

View File

@@ -11,14 +11,18 @@ burnRateDriver = kernel.addDriver("burnrate_driver")
local function runMonitors()
while true do
tempDriver.watch()
coolantDriver.watch()
statusDriver.watch()
turbineDriver.watch()
burnRateDriver.watch()
sleep(0.05)
end
parallel.waitForAll(tempDriver.watch, coolantDriver.watch, statusDriver.watch, turbineDriver.watch, burnRateDriver.watch)
-- while true do
-- tempDriver.watch()
-- coolantDriver.watch()
-- statusDriver.watch()
-- turbineDriver.watch()
-- burnRateDriver.watch()
-- sleep(0.05)
-- end
end
local function runDisplay()