Advertisement
Guest User

Untitled

a guest
May 9th, 2015
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. local component = require("component")
  2. local event = require("event")
  3. local m = component.modem
  4. m.open(123)
  5.  
  6. -- begin event
  7. event.listen("modem_message", "receive")
  8. local function receive()
  9. local _, _, from, port, _, message ="modem_message")
  10. print("Got a message from " .. from .. " on port " .. port .. ": " .. tostring(message))
  11. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement