From 86a758a0eab95aae8a6e289d346ca6c35c90f8bd Mon Sep 17 00:00:00 2001 From: itzmarkoni Date: Sun, 15 Jun 2025 17:05:13 -0400 Subject: [PATCH] updated --- main.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/main.lua b/main.lua index 0e0c1c7..9427b7b 100644 --- a/main.lua +++ b/main.lua @@ -87,6 +87,12 @@ local function run() startUp(); monitor.clear(); + local names = peripheral.getNames() + for index, value in ipairs(names) do + print(index, value) + read() + end + parallel.waitForAll(runMonitors, runDisplay) end