04-30-2025 06:04 PM
Greetings:
I am using an 6289 DAQ Card in c#.
I was wondering if there was a way to retreive the maximum and minimum voltage value that was previously set.
using var analogVoltageTask = new Task();
//Set to -1V to 1V.
analogVoltageTask.AIChannels.CreateVoltageChannel(name, "", AiTerminalConfig, -1.0, 1.0, AIVoltageUnits.Volts);
.
.
.
analogVoltageTask.Control(TaskAction.Verify);
//Reads Sample Rate
var maxSampleRate = analogVoltTask.Timing.SampleClockMaximumRate;
.
.
I do not see a way to retreive the maximum and minimum voltage set by the analog input channel.
Is there a way to do this?
Thank you.
04-30-2025 10:24 PM
See C:\Users\Public\Documents\National Instruments\NI-DAQ\Documentation\NINETDAQmxFx40Ref.chm
05-01-2025 01:34 PM
Thank you so much.