summaryrefslogtreecommitdiff
path: root/beeite.lua
diff options
context:
space:
mode:
authorubq323 <ubq323@ubq323.website>2024-04-01 02:24:54 +0100
committerubq323 <ubq323@ubq323.website>2024-04-01 02:24:54 +0100
commit0545299672e446faea7241c652b5bb3f83eab22a (patch)
treee51c0f68b13452d09284f7257ad4bf4e4b9cc131 /beeite.lua
parent8a0a10cd58ca39ece0a6f42592e7ba3382d26954 (diff)
launch o
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)