Hi,
you can change threshold to script like this:
then threshold will fire if voltage is less than 22 unless you have custom attribute VoltageThreshold set on a node - in that case it will compare current value with value of this attribute. So if you need to override threshold to fire if below 25v on specific node, go to that node properties, page "Custom Attributes", and add attribute VoltageThreshold with value 25.
Best regards,
Victor
you can change threshold to script like this:
Code Select
v = GetCustomAttribute($node, "VoltageThreshold");
return $1 < ((v != null) ? v : 22);
then threshold will fire if voltage is less than 22 unless you have custom attribute VoltageThreshold set on a node - in that case it will compare current value with value of this attribute. So if you need to override threshold to fire if below 25v on specific node, go to that node properties, page "Custom Attributes", and add attribute VoltageThreshold with value 25.
Best regards,
Victor