Difference between revisions of "String devices.system.output1 state"

From wiki.netio-products.com
Jump to navigation Jump to search
(Založena nová stránka s textem „{{DISPLAYTITLE:String devices.system.output1_state}} Returns the state of corresponding outlet state of outlet 1: string devices.system.output1_state stat…“)
 
Line 1: Line 1:
 
{{DISPLAYTITLE:String devices.system.output1_state}}
 
{{DISPLAYTITLE:String devices.system.output1_state}}
Returns the state of corresponding outlet
+
Returns the state of corresponding outlet.
 +
 
 
state of outlet 1:
 
state of outlet 1:
 
  string devices.system.output1_state
 
  string devices.system.output1_state

Revision as of 23:04, 14 April 2017

Returns the state of corresponding outlet.

state of outlet 1:

string devices.system.output1_state

state of outlet 2:

string devices.system.output2_state

state of outlet 3:

string devices.system.output3_state

state of outlet 4:

string devices.system.output4_state

Value

  • "on" when the outlet is on
  • "off" when the outlet is off

warning the value is not boolean!

if devices.system.output1_state==true then ...

The above condition always fails!

Usage

if devices.system.output1_state=="on" then
  log("Outlet 1 is on")
else
  log("Outlet 1 is off")
end