LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

How to slow down indicator update

Hi,
I have a VI mainly composed of a while loop acquiring data from an analogic input at 100 Hz. However, if I connect the indicator directly to the read signal, the indicator is updated at the same frequency (100Hz). How can I keep acquiring the signal at 100Hz but only update the indicator at 10Hz ?
 
Thank you,
 
Philippe
0 Kudos
Message 1 of 3
(3,072 Views)
Place the indicator in a case structure. Now use "quotient&remainder and divide the iteration counter of the loop by e.g. 10. WIre the remainder to the case selector terminal,  leave the default case empty and make the case with the terminal in it "case 0".
 
Every 10 iterations, the indicator will update. Modify as needed.
0 Kudos
Message 2 of 3
(3,069 Views)

Thank you! I didn't think this was so simple... 🙂

 

0 Kudos
Message 3 of 3
(3,041 Views)