Difference between revisions of "Redstone.getBundledInput"

From ComputerCraft Wiki
Jump to: navigation, search
Line 11: Line 11:
 
|code=print(colors.test(redstone.getBundledInput("back"), colors.blue))
 
|code=print(colors.test(redstone.getBundledInput("back"), colors.blue))
 
|output=true if the blue part of the back input is active, otherwise false
 
|output=true if the blue part of the back input is active, otherwise false
 +
}}
 +
{{Example 2
 +
|desc=Checks wich color (int) is activated
 +
|code=print(redstone.getBundledInput("back"))
 +
|output=the number (1-16) which cable is activated
 
}}
 
}}
 
}}
 
}}

Revision as of 13:51, 13 May 2012


Grid Redstone.png  Function redstone.getBundledInput
No description provided.
Syntax redstone.getBundledInput(string side)
Returns colors the colours that are activated on that side
Part of ComputerCraft
API redstone

Examples

Grid paper.png  Example
Checks whether the blue part of the back input is active
Code
print(colors.test(redstone.getBundledInput("back"), colors.blue))
Output true if the blue part of the back input is active, otherwise false



Template:Example 2