Last active
December 11, 2015 00:19
-
-
Save nitehawk/4516011 to your computer and use it in GitHub Desktop.
Rednet Monitor app
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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