Difference between revisions of "Rednet.open"

From ComputerCraft Wiki
Jump to: navigation, search
m
Line 9: Line 9:
 
{{Example
 
{{Example
 
|desc=Tells the computer that the side can be used for networking.  
 
|desc=Tells the computer that the side can be used for networking.  
|code=rednet.open( side )
+
|code=rednet.open( "left" )
 
}}
 
}}
 
}}
 
}}

Revision as of 21:24, 15 March 2012


Grid Redstone.png  Function rednet.open( side )
Tells the computer that the side can be used for networking.
Syntax rednet.open( side )("left","right","front","back","bottom","top")
Returns nil
Part of ComputerCraft
API rednet

Examples

Grid paper.png  Example
Tells the computer that the side can be used for networking.
Code
rednet.open( "left" )