04-16-2013 08:33 PM
I have made a program with sensors using CRio. There are four different sensors and they work well when being run. The next step i have to do is to log the data for every few seconds but i don't know how. I am very new to Labview. Can anyeone help?
04-24-2013 09:06 AM
Oh my Infinite Loops! Oh my redundant code!
You should start here: http://www.ni.com/academic/students/learn-labview/
Lots of options for writing to disk every few seconds. But you could buffer the values into an array, pass the array between iterations using a shift register, and then put the "write to disk" code in a case structure which you call from a case structure after X seconds have elapsed.
Also have a look at the "LabVIEW Example Finder" (help > find examples) ... you might find some good examples for writing to disk.