This commit is contained in:
2025-06-15 18:57:16 -04:00
parent 4c72f7daed
commit 49b2c2157b
2 changed files with 6 additions and 3 deletions

View File

@@ -13,6 +13,11 @@ end
local function startup()
speakerDriver.startup()
print("Testing Control Room Speakers...")
local speakerList = peripheral.find("speaker")
for index, value in ipairs(speakerList) do
print("Speaker " .. index .. ": " .. value.getName())
end
speakerDriver.playControlRoomAlarm(controlRoomSpeakers)
end