Limpedance

SCPI Command:

CONFigure:BASE:AOUT<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(audioOutput=AudioOutput.Default) LimpedanceStruct[source]
# SCPI: CONFigure:BASE:AOUT<nr>:LIMPedance
value: LimpedanceStruct = driver.configure.base.audioOutput.limpedance.get(audioOutput = repcap.AudioOutput.Default)

Configures the impedance ‘R Load’.

param audioOutput:

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

return:

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

set(enable: bool, impedance: float, audioOutput=AudioOutput.Default) None[source]
# SCPI: CONFigure:BASE:AOUT<nr>:LIMPedance
driver.configure.base.audioOutput.limpedance.set(enable = False, impedance = 1.0, audioOutput = repcap.AudioOutput.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 audioOutput:

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