Difference between revisions of "Function devices.system.SetOut()"

From wiki.netio-products.com
Jump to navigation Jump to search
 
Line 1: Line 1:
 
{{DISPLAYTITLE:function devices.system.SetOut()}}
 
{{DISPLAYTITLE:function devices.system.SetOut()}}
 
Changes the state (on or off) of the outlet.
 
Changes the state (on or off) of the outlet.
  <i>nil</i> <b>devices.system.SetOut</b>(<code>config</code>)
+
  <i>nil</i> <b>devices.system.SetOut</b>(<i>table</i> <code>config</code>)
  
 
=== Parameters ===
 
=== Parameters ===

Latest revision as of 19:28, 5 May 2017

Changes the state (on or off) of the outlet.

nil devices.system.SetOut(table config)

Parameters

table config{output, value}
  • number output outlet to change (1 to 4)
  • boolean value
    • true = turn on
    • false = turn off

Return value

nil

Usage

-- turns outlet No.1 on
devices.system.SetOut{output=1,value=true}

See also