03-30-2025 06:59 AM - edited 03-30-2025 07:01 AM
Hi,
question might be ridiculously obvious, but I am new to LabView software.
Why isn't the state of the Boolean 3 LED indicator updated every iteration but only on VI termination?
Solved! Go to Solution.
03-30-2025 08:38 AM - edited 03-30-2025 08:45 AM
Structured Data Flow.
- Node runs when all inputs available
- Node returns outputs when it completes execution
Looking at the While Loop as a node, the output of the right shift register is not returned until Boolean 4 stops the loop. Then, Boolean 3 updates!
Check out this tutorial (especially the Dataflow Programming Section):
https://learn.ni.com/courses/labview-tutorial
03-30-2025 10:27 AM - edited 03-30-2025 11:29 AM
It all follows the principles of dataflow, one of the core concepts of LabVIEW and the first thing you should learn.
In your case, the "Boolean 3" can only update once the while loop stops, before that, the output value is not defined.
A powerful side effect of all this is the fact that anything that does not depend on earlier code can run in parallel.
LabVIEW is a full features programming language, not an electrical circuit simulator or similar.
A few quick comments on your "program".
03-30-2025 11:05 AM
Thank you for all your comments on my code, but that was just an example, to illustrate my question - no factory will ever use it as a crucial component.
So i guess your answer extends to all nodes, that would mean timed loops as well. Am I right?
03-30-2025 11:32 AM - edited 03-30-2025 11:42 AM
@JakubWaw wrote:
So i guess your answer extends to all nodes, that would mean timed loops as well. Am I right?
It applies to absolutely everything that has inputs and/or outputs! (structures, subVIs, terminal, primitives, etc.)
For an old very simple example, watch this video.