Hi everyone. I am a new LM and lua user, I wonder how can I realize the time loop control? e.g. when I trigger 1/1/1=1, then 1/1/2=1, 1s,1/1/3=1, 1s, 1/1/4=1, and return. When I trigger 1/1/1=0, stop the loop. Thanks a lot
05.05.2020, 13:59 (This post was last modified: 05.05.2020, 14:08 by 38348259.)
(05.05.2020, 13:25)Thanks a lot. I will try. But can I use while do' or 'repeat until' ?Daniel. Wrote: I would do it by two scripts. First event attached to your 1/1/1 which will enable/disable the second resident script.
Code:
12345678910
value = event.getvalue()
ifvaluethenscript.enable('loop')
elsescript.disable('loop')
end
Second is resident script with interval of 1s and such code.
Yes but running while loop in event based script for a longer time it is not the best idea. This is the most efficient way for processes. Otherwise you have to make sure that you won't run the same script more than once before ending the previous script.
(05.05.2020, 14:03)Thank you for your help. Daniel. Wrote: Yes but running while loop in event based script for a longer time it is not the best idea. This is the most efficient way for processes. Otherwise you have to make sure that you won't run the same script more than once before ending the previous script.