Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local component = require("component")
- local event = require("event")
- local m = component.modem
- m.open(123)
- -- begin event
- event.listen("modem_message", "receive")
- local function receive()
- local _, _, from, port, _, message ="modem_message")
- print("Got a message from " .. from .. " on port " .. port .. ": " .. tostring(message))
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement