summaryrefslogtreecommitdiff
path: root/beeite.lua
diff options
context:
space:
mode:
Diffstat (limited to 'beeite.lua')
-rw-r--r--beeite.lua30
1 files changed, 0 insertions, 30 deletions
diff --git a/beeite.lua b/beeite.lua
deleted file mode 100644
index b1449fe..0000000
--- a/beeite.lua
+++ /dev/null
@@ -1,30 +0,0 @@
-local framebuf = require("framebuf")
-local fb = framebuf.new()
-
-
-local monitors = {
- "monitor_1808", "monitor_1810", "monitor_1809"
-}
-
-for ix,iname in ipairs(monitors) do
- print("doing",ix,iname)
- local mon = peripheral.wrap(iname)
- mon.clear()
- mon.setTextScale(0.5)
- fb:clear()
- fb:ppm(fs.open("img/john_"..ix..".pnm","rb"))
- local t = term.redirect(mon)
- local _, bee = pcall(function() fb:present() end)
- term.redirect(t)
- print(bee)
-end
-
--- local m = peripheral.wrap "bottom"
--- m.clear()
--- m.setTextScale(0.5)
--- local t = term.redirect(m)
--- local _, bee = pcall(function()
--- fb:present()
--- end)
--- term.redirect(t)
--- print(bee)