Enable

SCPI Command:

SOURce:AFRF:GENerator<Instance>:MODulator:ENABle
class EnableCls[source]

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

class EnableStruct[source]

Response structure. Fields:

  • Left: bool: OFF | ON

  • Right: bool: OFF | ON

get() EnableStruct[source]
# SCPI: SOURce:AFRF:GENerator<Instance>:MODulator:ENABle
value: EnableStruct = driver.source.afRf.generator.modulator.enable.get()

Enables or disables the audio signal input paths of the modulator. For FM stereo, the settings configure the left and the right audio channel. For other modulation types, only <Left> is relevant. <Right> has no effect.

return:

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

set(left: bool, right: bool) None[source]
# SCPI: SOURce:AFRF:GENerator<Instance>:MODulator:ENABle
driver.source.afRf.generator.modulator.enable.set(left = False, right = False)

Enables or disables the audio signal input paths of the modulator. For FM stereo, the settings configure the left and the right audio channel. For other modulation types, only <Left> is relevant. <Right> has no effect.

param left:

OFF | ON

param right:

OFF | ON