cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community email notifications are disrupted. While we are working to resolve, please check on your favorite boards regularly to keep up with your conversations and new topics.

alert triggered by fixed float rather than raw data

LeoChen
7-Bedrock

alert triggered by fixed float rather than raw data

Dears,

    How should I do to trigger alert by fixed float on TWX?

    For example, tag A is float with 8 decimal point, and alert will be triggered when A > 2.10. Now A is equal to 2.10000099, and alert should not be triggered because A is 2.10 when fixed to 2 decimal points.

    could you help me to make this? Thanks very much.

3 REPLIES 3
Rocko
17-Peridot
(To:LeoChen)

You could try to set to Value and Data Change Threshold to 0.01 on the thing property. Not sure if that works.

Or you create a second property whose value is set by subscription to the original property and the value is always trunc(event.newValue)

LeoChen
7-Bedrock
(To:Rocko)

Thank you for your reply.

But different alerts are running with this tag, other alerts will be changed with Data Change Threshold changing.

Rocko
17-Peridot
(To:LeoChen)

Then go with the second option, or get the source that is updating the property to use the right precision.

Top Tags