Difference between revisions of "Redstone.getBundledOutput"
From ComputerCraft Wiki
(Created page with "if(rs.getBundledOutput("back") > "0") then rs.setBundledOutput("back", 0) else rs.setBundledOutput("back", colors.red+colors.yellow) ----") |
(Changing int to number) |
||
(6 intermediate revisions by 5 users not shown) | |||
Line 1: | Line 1: | ||
− | + | {{lowercase}} | |
− | + | {{Function | |
− | + | |name=redstone.getBundledOutput | |
− | + | |args={{type|string}} side | |
− | + | |api=redstone | |
+ | |returns={{type|number}} the value of the colors that are activated on that side | ||
+ | |addon=ComputerCraft | ||
+ | |examples= | ||
+ | {{Example | ||
+ | |desc=Prints the value of the active colors on the back | ||
+ | |code=[[print]](redstone.getBundledOutput ("back")) | ||
+ | |output=the value of the colors, for example 1 if only white is active. | ||
+ | }} | ||
+ | }} | ||
+ | |||
+ | [[Category:Lua_Core_Functions]] |
Latest revision as of 11:50, 18 July 2013
Function redstone.getBundledOutput | |
No description provided. | |
Syntax | redstone.getBundledOutput(string side) |
Returns | number the value of the colors that are activated on that side |
Part of | ComputerCraft |
API | redstone |
Examples
Example | |
Prints the value of the active colors on the back | |
Code |
print(redstone.getBundledOutput ("back")) |
Output | the value of the colors, for example 1 if only white is active. |