LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

labview sequence time function

Solved!
Go to solution

Hi emre,

 


@emre_ wrote:

Is it possible to program a program that repeats this process n(5) times?


Yes.

Best regards,
GerdW


using LV2016/2019/2021 on Win10/11+cRIO, TestStand2016/2019
0 Kudos
Message 11 of 14
(702 Views)

Could you please give me some idea on how to do this? "State machine" is pretty complicated when learning for the first time. 😥

0 Kudos
Message 12 of 14
(698 Views)

Hi emre,

 


@emre_ wrote:

Could you please give me some idea on how to do this? "State machine" is pretty complicated when learning for the first time. 😥


You want to repeat a process (of several steps/states?) 5 times?

Then you need to put a counter into your statemachine-internal values/conditions and decide to start that cycle depending on this counter value:

counter:=0
while counter < 5
  counter++
  run cycle states
wend
Best regards,
GerdW


using LV2016/2019/2021 on Win10/11+cRIO, TestStand2016/2019
0 Kudos
Message 13 of 14
(686 Views)

thanks I understood  now 🙂

0 Kudos
Message 14 of 14
(675 Views)