blob: 59c8dc1c52167efe7eb857aac5abef4d5265148a (
plain)
1
2
3
4
5
6
7
8
|
-- clear all monitors
local ms = {peripheral.find"monitor"}
for _,m in ipairs(ms) do
print(_)
m.setPaletteColor(colors.black, 0, 0, 0)
m.setBackgroundColor(colors.black)
m.clear()
end
|