Advertisement
Guest User

satellite

a guest
Dec 1st, 2014
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.82 KB | None | 0 0
  1. local modem = peripheral.wrap("back")
  2. modem.open(10) -- information from tree farm
  3. modem.open(101) -- commands from another computer which I use to control the tree farm via the network
  4.  
  5. while true do
  6.   sleep(0)
  7.   Event, ModemSide, ModemPort, ModemReplyPort, ModemMessage, ModemDistance = os.pullEvent("modem_message")
  8.  
  9.   -- transforms the ports to send information from the tree farm to the main computer
  10.   if ModemPort == 10 then
  11.     ModemPort = 100
  12.     ModemReplyPort = 1
  13.   end
  14.  
  15.   -- transforms the ports to send information from the main computer to the tree farm
  16.   if ModemPort == 101 then
  17.     ModemPort = 1
  18.     ModemReplyPort = 10
  19.   end
  20.   modem.transmit(ModemPort, ModemReplyPort, ModemMessage)
  21.  
  22.   print(ModemMessage)
  23.  
  24.   Event, ModemSide, ModemPort, ModemReplyPort, ModemMessage, ModemDistance = 0
  25. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement