10-29-2013 09:36 AM - edited 10-29-2013 09:36 AM
I am new to labview an I have the code to get the temperature from a thermocouple sensor. But I was wondering how to make it the temperature update( not every second but maybe every minute) not is it just a simple loop? I'm confused. If someone could help me that would be great I attached the code below.
Solved! Go to Solution.
10-29-2013 09:46 AM - edited 10-29-2013 09:50 AM
to update temperature, encase the daq read in a while loop with included wait(ms), to hold the value every minute...put it on an initialized shift register, every minute(use an elapsed timer set to one minute) input the value to the shift register using case select, indicate value of the shift register...
10-29-2013 10:47 AM
The first daq read should be encased in the while loop?
10-29-2013 11:29 AM
@Gotti_uncc wrote:
The first daq read should be encased in the while loop?
If you want it to update continuously...
10-29-2013 01:28 PM
Thanks I understand what you were saying now.