Hi,
In our Mango system we should change the value of the target point based on the value of the two source points. We should show the alarm message in the public view to the end user immidiately after the value is over the low limit.
We try to use point linking, but we need to also get the current value of two source points (source2.value) to change the target value.
if (source.value > source2.value) return true; return false;
// source is measured humidity value
// source2 is static value set by the Mango user as a low limit to Alarm
We try to use "Point Linking", but It's not possible to use two source points there?
Any other hints how to implement this?