Step
SCPI Commands :
[SOURce<HW>]:FREQuency:STEP:MODE
[SOURce<HW>]:FREQuency:STEP:[INCRement]
- Commands in total: 2Subgroups: 0Direct child commands: 2
- get_increment() float[source]
# [SOURce<HW>]:FREQuency:STEP:[INCRement] value: float = driver.source.frequency.step.get_increment()
Sets the step width. You can use this value to vary the RF frequency with command FREQ UP or FREQ DOWN, if you have activated FREQ:STEP:MODE USER. Note: This value also applies to the step width of the rotary knob on the instrument and, in user-defined step mode, increases or decreases the frequency.
- Returns:
increment: float Range: 0 Hz to RFmax - 100 kHz
- get_mode() FreqStepMode[source]
# [SOURce<HW>]:FREQuency:STEP:MODE value: enums.FreqStepMode = driver.source.frequency.step.get_mode()
Defines the type of step size to vary the RF frequency at discrete steps with the commands FREQ UP or FREQ DOWN.
- Returns:
mode: DECimal | USER DECimal Increases or decreases the level in steps of ten. USER Increases or decreases the level in increments, set with the command FREQ:STEP[:INCR].
- set_increment(increment: float) None[source]
# [SOURce<HW>]:FREQuency:STEP:[INCRement] driver.source.frequency.step.set_increment(increment = 1.0)
Sets the step width. You can use this value to vary the RF frequency with command FREQ UP or FREQ DOWN, if you have activated FREQ:STEP:MODE USER. Note: This value also applies to the step width of the rotary knob on the instrument and, in user-defined step mode, increases or decreases the frequency.
- Parameters:
increment – float Range: 0 Hz to RFmax - 100 kHz
- set_mode(mode: FreqStepMode) None[source]
# [SOURce<HW>]:FREQuency:STEP:MODE driver.source.frequency.step.set_mode(mode = enums.FreqStepMode.DECimal)
Defines the type of step size to vary the RF frequency at discrete steps with the commands FREQ UP or FREQ DOWN.
- Parameters:
mode – DECimal | USER DECimal Increases or decreases the level in steps of ten. USER Increases or decreases the level in increments, set with the command FREQ:STEP[:INCR].