10-16-2012 04:48 AM
Does the function wait(ms) in LabVIEW web ui builder include processing time?
Solved! Go to Solution.
10-17-2012 03:46 PM
Hi Lawrence,
I think your question is asking whether the wait (ms) will block the cpu. In labview and webUI the function will not block the rest of the code from executing. You might want to make a structure such as shown below to see this:
You will see that if "Wait time" is greater than "Execution Time" the loop speed will be limited by the "Wait Time" and vice versa.
Does this answer your question