This commit is contained in:
2025-06-14 17:05:47 -04:00
parent 904309aa0f
commit c46bd5895f

View File

@@ -13,7 +13,7 @@ burnRateDriver = kernel.addDriver("burnrate_driver")
local function runMonitors() local function runMonitors()
while true do while true do
parallel.waitForAll( parallel.waitForAll(
tempDriver.watch, tempDriver.watch,
coolantDriver.watch, coolantDriver.watch,
@@ -33,7 +33,7 @@ local function runDisplay()
{ Label = "Status", driver = statusDriver}, { Label = "Status", driver = statusDriver},
{ Label = "Temperature", driver = tempDriver }, { Label = "Temperature", driver = tempDriver },
{ Label = "Coolant", driver = coolantDriver }, { Label = "Coolant", driver = coolantDriver },
{ Label = "Turbine", driver = turbineDriver } { Label = "Turbine", driver = turbineDriver },
{ Label = "Burn Rate", driver = burnRateDriver } { Label = "Burn Rate", driver = burnRateDriver }
} }