Initialize modular ATM10 CC control system

This commit is contained in:
2026-07-13 02:46:11 +02:00
commit 5362d31036
28 changed files with 331 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
local dashboard = require("ui.dashboard")
local M = {}
function M.run(config)
dashboard.render(term, "ATM10 MAIN CONTROL", { "Bootstrap aktiv", "Node: " .. config.nodeName })
while true do os.pullEvent() end
end
return M