Difference between revisions of "Redstone (API)"

From ComputerCraft Wiki
Jump to: navigation, search
m (Added periods, changed capitalization, swapped words around, removed (possibly fake) jargon.)
m (There is no 'number' type, changed to 'int')
Line 24: Line 24:
 
<td style="border-top: solid #C9C9C9 1px; padding: .4em;">Returns the current redstone input signal strength on ''side''. If no input is present, returns 0. If a redstone source (such as a redstone torch or block) is directly adjacent to the computer, returns 15.</td></tr>
 
<td style="border-top: solid #C9C9C9 1px; padding: .4em;">Returns the current redstone input signal strength on ''side''. If no input is present, returns 0. If a redstone source (such as a redstone torch or block) is directly adjacent to the computer, returns 15.</td></tr>
  
<tr style="background-color: #FFFFFF;"><td style="border-top: solid #C9C9C9 1px; padding: .4em;">[[redstone.setAnalogOutput]]({{type|string}} side, {{type|number}} strength)</td>
+
<tr style="background-color: #FFFFFF;"><td style="border-top: solid #C9C9C9 1px; padding: .4em;">[[redstone.setAnalogOutput]]({{type|string}} side, {{type|int}} strength)</td>
 
<td style="border-top: solid #C9C9C9 1px; padding: .4em;">Sets or resets a redstone signal on ''side'' to ''strength''.</td></tr>
 
<td style="border-top: solid #C9C9C9 1px; padding: .4em;">Sets or resets a redstone signal on ''side'' to ''strength''.</td></tr>
  

Revision as of 23:53, 5 May 2013

The Redstone API contains methods to control attached RedPower cables/bundled cables and regular redstone. All methods from the redstone API can also be called using "rs", which points to the same library. For example, instead of redstone.getSides(), rs.getSides() can be used. Refer to the Colors API for more information on interacting with RedPower's bundled cables.

Grid disk.png   Redstone (API)

Method NameDescription
redstone.getSides() Returns a table of possible sides.
redstone.getInput(string side) Returns the current redstone input signal state on side.
redstone.setOutput(string side, boolean value) Sets or resets a redstone signal on side.
redstone.getOutput(string side) Returns the current redstone output signal on side.
redstone.getAnalogInput(string side) Returns the current redstone input signal strength on side. If no input is present, returns 0. If a redstone source (such as a redstone torch or block) is directly adjacent to the computer, returns 15.
redstone.setAnalogOutput(string side, int strength) Sets or resets a redstone signal on side to strength.
redstone.getAnalogOutput(string side) Returns the current redstone output signal strength on side.
redstone.getBundledInput(string side) Returns the state (as a number) of a RedPower bundled cable connected to side.
redstone.getBundledOutput(string side) Returns the set of RedPower wires in the RedPower bundled cable which are being activated by the terminal on side.
redstone.setBundledOutput(string side, int colors) Sets one or multiple colored signals in a RedPower bundled cable attached to side. colors will determine which signals are activated. In order to set multiple signals, add the color values of the colors you want to activate. To turn off all of the colors, use 0.
redstone.testBundledInput(string side, int color) Returns true if color is active in a RedPower bundled cable attached to side. Else, returns false.