This commit is contained in:
2025-06-15 17:39:02 -04:00
parent 4546df990f
commit 3fe1f62f22
2 changed files with 27 additions and 0 deletions

23
pairity_main.lua Normal file
View File

@@ -0,0 +1,23 @@
kernel = require("kernel")
--local reactor = peripheral.find("fissionReactorLogicAdapter")
local modem = peripheral.find("modem")
local monitor = peripheral.find("monitor")
function setNewLine()
local x,y = monitor.getCursorPos()
monitor.setCursorPos(1, y + 1)
monitor.clearLine()
end
local function run()
monitor.setCursorPos(1,0)
while true do
setNewLine()
monitor.write("Checking for reactor status...")
setNewLine()
monitor.write("Checking main control loop...")
sleep(2)
end
end
return { run = run }