(wip)
Table of Contents |
---|
...
condDelay- Add delay to condition after a transition from false to true before evaluating to true. Units to use are: sec, min, hr
email - Send an email using the configured SMTP connector. More details about this block here.
setDelay - Variable set with a delay. It only delays if there is a change of value on the set block. Setting same value will not make it delay. Recommend to use wait block instead for static set value.
setExternal - Variable set from an external program
wait - Pause the routine for a specific amount of time. Units to use are: sec, min, hr, and day?
...
if - If block performs boolean condition flow control between then and else. More details about this block here If Block example.
return - Return exits the routine and returns given expression value
...
all - returns if all items in a collection matches a condition
and - Logical-and of boolean values
any - Returns if any item in a collection matches a condition
cmpEq - Equality comparison
cmpGt -Greater than comparison
cmpGtEq - Greater than or equal comparison
cmpLt - Less than comparison
cmpLtEq - Less than or equal comparison
cmpNotEq - Not equal comparison
More More details about the comparisonblocks herecomparison blocks here.
inRange - Return if val is between an inclusive min and max
not - Logical not of boolean value
or - Logical-or of boolean values
xor - Logical exclusive-or of two boolean values
isType - Checks if a value is an instance of a given type
...