11-28-2005 08:28 PM
11-29-2005 08:59 AM
You didn't attach any VI.
Adding a channel is simple. With DAQmx, all you have to do is add it to the physical channel list. If you want continuous channels (i.e. 0 and 1), it would be Dev1/ai0:1. If you want noncontinuous channels (i.e. 1 and 2), it would be Dev1/ai1,Dev1/ai3. You would also need to change the DAQmx Read for a multi-channel read.
It sounds like what you want is an XY graph. You bundle the x array data together with the y array. Check the user manual, on-line help, and the shipping examples for information on how the XY graph is used.
11-29-2005 08:27 PM
Hi Leye,
Can you please the post VI you are using. Are you using any example program.
What scope card are you using. To use second channel, you have to configure channel settings for the second channel.
Then when reading the data, use NI-Scope MultiFetch WDT to fetch data from multiple channels. For this VI, give channel list as 0,1.
To simply configure scope card, you can use NI-SCOPE Express VI. Once you read the data you can plot data on XY graph as dennis explained or use build Express XY Graph.
Thanks,
Kalyan
11-30-2005 10:25 AM
12-01-2005 01:17 PM
Hi Leye,
Just browse to the specific file using browse button and click OK. Clicking "Submit Post" after finishing with your message will attach the file to this post. If you want to attach multiples, just zip them
12-01-2005 03:33 PM
12-04-2005 08:59 PM
Hello Leye,
Using NI-DAQ is not the recommended method for controlling this device. NI-SCOPE provides a more intuitive programming interface. It also includes more digitizer-specific documentation and application examples.
With your current application, to acquire data from other channel, in the channel list on the front panel specify 0,1. In the while once you acquire data from 2 channels, use "Index Array Function" to separate data from two channels. The output of the Index array function should be two 1-D Arrays. Feed these two arrays as input to the Build XY Graph Express VI (place this inside while loop).
Hope this helps
Kalyan
12-05-2005 10:44 AM
12-06-2005 08:06 PM
Hi Leye,
I am not sure about how to do Z-blanking in LabVIEW. It looks specific to your application. Did you get the data plotted in XY Graph?
Kalyan
12-08-2005 08:47 AM