Multifunction DAQ

cancel
Showing results for 
Search instead for 
Did you mean: 

set gain with DAQmx on e series (6035) channel(x)

What do I use to modify the gain over channel x in DAmx. I want to be able to reset the gain midway through my function, or include a user control on the front panel. Will such a change require re-initializing the board and upset the timing of my VI? Point me in the right direction. Thx, MP
0 Kudos
Message 1 of 2
(2,576 Views)
Setting the AI Min and Max properties controls the gain that is set for each channel on the DAQ board. You can set these inputs through the Create Channel VI or through the Channel Property Node. Once these inputs are set, the DAQmx driver will automatically pick the gain that provides the highest resolution for the acquisition over the input range specified. You can query the AI Min and Max properties at any time to see which values are being used by the driver.

However, you can't change the input range being used for a channel while the acquisition is in progress. If you want to change the input range, you will need to stop the task, reconfigure appropriately, and restart the task.
0 Kudos
Message 2 of 2
(2,576 Views)