Hello Forum,
I have a small problem with dependent triggers (I think).
At the moment I have 2 triggers, each fires for the same item at different usage levels. One fires if a level is at >70% for 15m, one if it is at >90% for 15m.
The triggers are built to fire like this:
trigger 1:
min(/TestTemplate/test.value,15m)>70
trigger 2:
min(/TestTemplate/test.value,15m)>90
I was thinking, that if the 70% trigger depends on the 90% trigger, this will happen:
- level reaches 70% -> trigger 1 fires
- level reaches 90% -> trigger 2 fires AND trigger 1 is switching off
Am I correct or have I understood this wrong? I am not sure on how to interpret that recursive hint on the documentation page....
Or is there a better way on doing this?
Thanks!
I have a small problem with dependent triggers (I think).
At the moment I have 2 triggers, each fires for the same item at different usage levels. One fires if a level is at >70% for 15m, one if it is at >90% for 15m.
The triggers are built to fire like this:
trigger 1:
min(/TestTemplate/test.value,15m)>70
trigger 2:
min(/TestTemplate/test.value,15m)>90
I was thinking, that if the 70% trigger depends on the 90% trigger, this will happen:
- level reaches 70% -> trigger 1 fires
- level reaches 90% -> trigger 2 fires AND trigger 1 is switching off
Am I correct or have I understood this wrong? I am not sure on how to interpret that recursive hint on the documentation page....
Or is there a better way on doing this?
Thanks!
thus my idea with the dependency....
So that kind of recovery expression would be nonsense.
Comment