05-19-2024 06:00 PM
I am new to object oriented with LabVIEW, maybe someone in here can help me. My project folder looks as shown below:
There are three children as you can see below and they are all inheriting from the parent
My main problem is the timer vi below . The code below is working fine by itself. It would update on the front panel by counting up to 50 then stop.
The only problem I am having when I connect it with the VI from the parent. The timer on the front panel is not updating; it remains 0
This is how the parent's timer VI looks like:
The child's timer VI looks like:
Is there anything that I am doing wrong? Can someone please help? I have attached a folder with all the VIs that I am working with.
05-20-2024 06:37 AM
That VI will spin 50 times and then continue and send out 50. A structure will wait for all inputs and only exit/loop when all owned blocks have executed.
05-20-2024 07:04 PM
Hi Yamaeda,
Thanks for answering. What would be your suggestion to solve this issue that I am having?