diff --git a/main.lua b/main.lua index 1891a08..4d77de2 100644 --- a/main.lua +++ b/main.lua @@ -13,15 +13,14 @@ burnRateDriver = kernel.addDriver("burnrate_driver") local function runMonitors() - while true do - parallel.waitForAll( - tempDriver.watch, - coolantDriver.watch, - statusDriver.watch, - turbineDriver.watch, - burnRateDriver.watch - ) - end + sleep(5) + parallel.waitForAll( + tempDriver.watch, + coolantDriver.watch, + statusDriver.watch, + turbineDriver.watch, + burnRateDriver.watch + ) end local function runDisplay()