redstone.getOutput

From ComputerCraft Wiki
Jump to: navigation, search


Grid Redstone.png  Function redstone.getOutput
Returns what was set with redstone.setOutput().
Syntax redstone.getOutput(string side)
Returns boolean state
Part of ComputerCraft
API redstone

Examples

Grid paper.png  Example
Sets the output of the left side to true, then prints the output of the left side.
Code
redstone.setOutput("left", true) -- Set the output on the left to true
print(redstone.getOutput("left")) --Print the output