Also, I was hoping to hear what is wrong with this approach:
Code: Select all
( (( th0temp-hmin < 3 ) & [rain0total-sumday]) - 0.1 )Code: Select all
( (( th0temp-hmin < 3 ) & [rain0total-sumday]) - 0.1 )Okay so how do I make it so that I only get notified when the temperature is cold?But, result of a logical "and" is 0 or 1, so your threshold value will be
overwritten with 0 or 1 when doing the logical operation.
Incremental alarms are not working good with logical operators