10 lines
312 B
Text
10 lines
312 B
Text
local tPeripherals = peripheral.getNames()
|
|
print("Attached Peripherals:")
|
|
if #tPeripherals > 0 then
|
|
for n = 1, #tPeripherals do
|
|
local sPeripheral = tPeripherals[n]
|
|
print(sPeripheral .. " (" .. table.concat({ peripheral.getType(sPeripheral) }, ", ") .. ")")
|
|
end
|
|
else
|
|
print("None")
|
|
end
|