From 11:00 PM CDT Friday, Nov 8 - 2:30 PM CDT Saturday, Nov 9, ni.com will undergo system upgrades that may result in temporary service interruption.
We appreciate your patience as we improve our online experience.
From 11:00 PM CDT Friday, Nov 8 - 2:30 PM CDT Saturday, Nov 9, ni.com will undergo system upgrades that may result in temporary service interruption.
We appreciate your patience as we improve our online experience.
07-11-2013 04:38 PM
A very simple problem...
Very new to LabView, and I am struggling with wiring up my Daq Assistant in order to graph data from a load cell. I've connected my load cell to the Daq and want to measure force readings over a span of time/when I press stop. When I run my program it only graphs a finite number of readings and then erases the graph to copy new readings on top. I put my graph outside of the while loop so that it would graph one reading at a time as they were read but it's not working. If my wiring isn't what's wrong, I have a feeling that my time settings for the Daq Assist are not right (and I don't know how to set those either.) I don't understand the description/effects of Rate and Samples to Read.
Thanks for your help.
Solved! Go to Solution.
07-11-2013 05:09 PM
Looked at my code some more. A more concise question would be: How do I get the Daq to continuously record the load cell measurements? Right now it's only measuring over the span of ~.07 seconds and then erases the graph for the next .07 seconds. I have my Daq set to continuous readings but the graph doesn't represent that.
07-11-2013 05:17 PM
07-11-2013 08:19 PM
@AFLR wrote:
A very simple problem...
Very new to LabView, and I am struggling with wiring up my Daq Assistant in order to graph data from a load cell. I've connected my load cell to the Daq and want to measure force readings over a span of time/when I press stop. When I run my program it only graphs a finite number of readings and then erases the graph to copy new readings on top. I put my graph outside of the while loop so that it would graph one reading at a time as they were read but it's not working. If my wiring isn't what's wrong, I have a feeling that my time settings for the Daq Assist are not right (and I don't know how to set those either.) I don't understand the description/effects of Rate and Samples to Read.
Thanks for your help.
Hi AFLR,
I think settings are fine, you have set DAQ to read 100 samples at the rate of 100samples/second, so you'll get 100 samples every second.
Now in order to retain the previous data in the Graph (which is not the nature of Graph), you may need to preserve it by writing extra code.
If you already know about:
1. Shift registers and
You can easily implement this requirement, find the attached VI for your reference.
07-12-2013 09:30 AM
Thank you very much for your help.