11-14-2011 05:46 AM
Hello
I have just acquired Measurement Studio 2010 Standard edition and USB 6212 DAQ.
I should do this 2 action:
1) Acquire a signal from one channel
2) Turn On/Off Digital Output Pin
The language that I use in VB.net 2010
Please help me with working example or good working tutorial
Thanks
11-14-2011 06:14 AM
This code should generate a waveform
This is my old code but don't work.
What I should change for use it now?
Dim MyTask_Dati_Out As New Task("Task_Dati_Out")
Dim Buffer As New AnalogSingleChannelWriter(MyTask_Dati_Out.Stream)
Vettore_Dati_Out = Array.CreateInstance(GetType(Double), 2, 200)
Try
'Creo il Task
MyTask_Dati_Out.AOChannels.CreateVoltageChannel("D
11-16-2011 04:38 AM
Can you see the following example?
It is an example that shows how to continuously acquire analog input and analog output at the same time, synchronized with one another on the same device. You can use it as aguide to help you implement your project.
http://zone.ni.com/devzone/cda/epd/p/id/2352