I would like to have my indicators on my front panel readout continuously not just when I hit the stop button. I've tried various configurations and multiple loops, but have not been able to achieve the result I want. I have attached the vi I am trying to get to do this. Thank you for any insights offered.
Make sure that you put a wait timer (with some small wait like 10 to 100 ms) in your loop so that the user interface thread has a chance to get updated.
Thank you very much. I don't grasp the shift register function of the while loop yet, but I'll delve into that to better understand why it works this way. I did try putting them in the loop, I did not use the shift registers.
The shift register allows data to flow from one iteration of a loop, into the next iteration. The data that flows into the right-side shift register will flow out of the left-side shift register on the next iteration. The data that is wired to the left-side from outside the loop, initializes the shift register, defining the value that flows out of it on the 0th iteration.