06-19-2019 02:35 PM
Hi
I am reading multiple analog physical channels through DAQ Assistant.
when I split the signal and feed the values to a time loop, they don't update to the current value?
Why is this a problem. The values cannot come out of the while loop. (used probe to check this). How do i achieve the task.
Solved! Go to Solution.
06-19-2019 03:31 PM
I don't believe you've taken any LabVIEW tutorials. I highly recommend you do.
LabVIEW Introduction Course - Three Hours
Learn LabVIEW
You missed the concept of data flow. Data only flows out of a structure or node when all the code inside of it is finished. Your loop never finishes because it is an infinite while loop. Also, the corollary is that a structure or can't begin execution until it has received all of its inputs.
06-19-2019 03:50 PM
Hi,
I have solved the problem using QUEUE function.
Thank You.
06-19-2019 05:14 PM
I'm every curious to see how you went from the code in your first post to using queues in a span of 1.5 hours.
06-20-2019 09:43 AM
I just looked up some examples. Seems its pretty easy.