Advertisement
jordonbc

Remote Turtle

Oct 11th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.31 KB | None | 0 0
  1. rednet.open("left", 50)  -- Left is the side of the modem and 50 is the channel were using
  2. while true do
  3. id, msg = rednet.receive()
  4. print(msg)                                                                -- This will print the message you have send from the pocket computer onto the turtle screen
  5. shell.run(msg)
  6. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement