computercraft/reactLamp
2023-11-22 23:03:25 +01:00

16 lines
303 B
Lua

-- vi: ft=lua
dofile("git-scripts.utils")
LAMP_SIDE = "bottom"
local modemSide = utils.getSideOf("modem")
rednet.open(modemSide)
rednet.host("reactLamp", "reactLamp") --register as lamp
while (true)
do
id, msg, sth = rednet.receive("reactLamp")
redstone.setOutput(LAMP_SIDE, msg == "1")
end