Skip to content

Instantly share code, notes, and snippets.

@nitehawk
Last active December 11, 2015 00:19
Show Gist options
  • Save nitehawk/4516011 to your computer and use it in GitHub Desktop.
Save nitehawk/4516011 to your computer and use it in GitHub Desktop.
Rednet Monitor app
term.clear()
term.setCursorPos(1,1)
rednet.open("left")
while true do
id, message = rednet.receive()
redstone.setOutput("back", true)
local nTime = os.time()
write(textutils.formatTime( nTime, false))
print (" - "..message)
sleep(1)
redstone.setOutput("back", false)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment