Page 1 of 1

If Else Condtions

Posted: 22 May 2020, 00:34
by wulybugger
Is it possible to setup If/Else conditions? It seems when assigning conditions to actions, it is only an 'If' condition. That is, if the condition is true then execute the action, otherwise do nothing. I would like to setup and If condition the flip-flop com, else flip-flop nav. Is this possible?

Re: If Else Condtions

Posted: 22 May 2020, 03:51
by c0nnex
For performance reasons IF-Else in common mannor is not supported.

* Create 2 Events.
* First Event with the IF Condition, Enable "End Processing"
* Second Event with the Else or no Conditon, Enable "End Processing". If using no condition be sure to set priorities, that the no condition-action is last

This way you can easily create "switch" conditions.
if (a) -> actions a , end processing
(else) if (b) -> actions b, end processing
(else) if (c) -> actions c, end processing