Difference between revisions of "PAB - RANGE"
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...") |
(No difference)
|
Revision as of 15:09, 22 October 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
}