Skip to content

Instantly share code, notes, and snippets.

@ShreksHellraiser
ShreksHellraiser / billboard.lua
Last active May 17, 2023 04:31
Simple program for displaying BIMG files on a term capable peripheral
local function resetPalette(periph)
local mon
if periph == "term" then
mon = term
else
mon = assert(peripheral.wrap(periph), periph.." is not a valid peripheral")
end
for i = 0, 15 do
mon.setPaletteColor(2^i, term.nativePaletteColor(2^i))