Difference between revisions of "PAB - RANGE"

From wiki.netio-products.com
Jump to navigation Jump to search
(Created page with "== Immediate evaluation == The condition evaluates to <code>TRUE</code> immediately as the current value appears between 100 and 200 mA <nowiki> { "type": "RANGE", "sourc...")
 
m (Djestrab moved page PAB - RANGE Examples to PAB - RANGE)
(No difference)

Revision as of 14:35, 16 November 2021

Immediate evaluation

The condition evaluates to TRUE immediately as the current value appears between 100 and 200 mA

{
  "type": "RANGE",
  "source": "OUTPUTS/1/CURRENT",
  "lowerBound": 100,
  "upperBound": 200,
  "timeHysteresis": 0
}

Evaluation with delay

The condition evaluates to TRUE when the current value is between 800 and 1000 mA for 5s.

{
  "type": "RANGE",
  "source": "OUTPUTS/1/CURRENT",
  "lowerBound": 800,
  "upperBound": 1000,
  "timeHysteresis": 5
}