1 posts
Posted 10 August 2013 - 12:30 AM
title: how to send a broadcast to a turtle
i don't know how to broadcast a message to a turtle so it can send a redstone pulse to do it can open a door from far away
1190 posts
Location
RHIT
Posted 10 August 2013 - 10:12 AM
Split into new topic.
220 posts
Location
Germany
Posted 10 August 2013 - 10:42 AM
You can use the
Rednet APIThere are also a couple of examples in the tutorials section of the forum.
467 posts
Location
Van Diemen's Land
Posted 11 August 2013 - 03:19 AM
-- Open the Modem
rednet.open(side)
-- Send string to Turtle
rednet.send(turtleID,string)
-- Close the Modem
rednet.close(side)
That should do it. Now you just need to make it so that if the turtle receives the certain string then it does something.