Limpedance

SCPI Command:

CONFigure:BASE:AIN<nr>:LIMPedance
class LimpedanceCls[source]

Limpedance commands group definition. 1 total commands, 0 Subgroups, 1 group commands

class LimpedanceStruct[source]

Response structure. Fields:

  • Enable: bool: OFF | ON ON: Use the configured Impedance. OFF: Ignore the configured Impedance.

  • Impedance: float: Range: 1 Ohm to 100E+6 Ohm, Unit: Ohm

get(audioInput=AudioInput.Default) LimpedanceStruct[source]
# SCPI: CONFigure:BASE:AIN<nr>:LIMPedance
value: LimpedanceStruct = driver.configure.base.audioInput.limpedance.get(audioInput = repcap.AudioInput.Default)

Configures the impedance ‘R Load’.

param audioInput:

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘AudioInput’)

return:

structure: for return value, see the help for LimpedanceStruct structure arguments.

set(enable: bool, impedance: float, audioInput=AudioInput.Default) None[source]
# SCPI: CONFigure:BASE:AIN<nr>:LIMPedance
driver.configure.base.audioInput.limpedance.set(enable = False, impedance = 1.0, audioInput = repcap.AudioInput.Default)

Configures the impedance ‘R Load’.

param enable:

OFF | ON ON: Use the configured Impedance. OFF: Ignore the configured Impedance.

param impedance:

Range: 1 Ohm to 100E+6 Ohm, Unit: Ohm

param audioInput:

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘AudioInput’)