Difference between revisions of "Computer.getID"

From ComputerCraft Wiki
Jump to: navigation, search
m (Changed int to number)
m (moved Computer.getID() to Computer.getID: Removed parenthesis to match other function pages.)
(No difference)

Revision as of 10:44, 1 June 2014

Grid Redstone.png  Function computer.getID
Returns the ID of a computer or turtle wrapped to the "computer" variable
Syntax computer.getID()
Returns number ID
Part of ComputerCraft
API peripheral

Examples

Grid paper.png  Example
Prints the ID of a computer or turtle on the right side of the calling machine.
Code
local handle = peripheral.wrap("right") 
print(handle.getID())
Output The ID of any computer or turtle to the right of the calling machine.