LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Agilent 34970A

Solved!
Go to solution

Hi, I want to use the Agilent 34901A (20 Channel Multiplexer) only to switch between sensors (data will be read by an oscilloscope) and without using the internal DMM. How can I implement the switch in Labview? How can I just close the corresponding channel connected to my sensor, without closing the Internal DMM Input (4W Sense) and without closing the bank switch. So that it is kind of working like the 34903A.

Thanks a lot!

0 Kudos
Message 1 of 3
(184 Views)
Solution
Accepted by anbix

You can do this, just leave channels 97 and 98 open to avoid connecting to the internal DMM (see diagram below).

 

The command to close or open a channel is:

ROUT:CLOSE(@<CHANNEL LIST>)

ROUT:OPEN(@<CHANNEL LIST>)

 

Note the caveat on the bottom of the snippet below, you must clear the scan list before the instrument will allow you to connect more than one channel at the same time. The command to clear the scan list is:

ROUT:SCAN(@)

 

I tested this on a DAQ970A which is a newer model but as far as I've seen is functionally identical. It worked fine.

 

See also:

https://www.keysight.com/us/en/assets/9018-02644/user-manuals/9018-02644.pdf

 

JeremyPeterson_0-1737410923790.png

 

0 Kudos
Message 2 of 3
(104 Views)

Tried it out, worked well, thanks!

0 Kudos
Message 3 of 3
(19 Views)