peripheral.find

From ComputerCraft Wiki
Revision as of 23:00, 29 March 2014 by Oeed (Talk | contribs) (Created page)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search


Grid Redstone.png  Function peripheral.find
Returns a handle to a peripheral of the supplied type that can then be used to call methods, as if using peripheral.call(side, method)
Syntax peripheral.find(string peripheral type)
Returns A handle to a peripheral of the given type.
Part of ComputerCraft
API peripheral

Examples

Grid paper.png  Example
Finds a monitor and writes 'Hello' on it.
Code
local monitor = peripheral.find('monitor') 
if monitor then
monitor.write('Hello')
end
Output If there is a monitor connected 'Hello' will be written on it.