Frequency

SCPI Commands :

SOURce:GPRF:GENerator<Instance>:LIST:FREQuency
SOURce:GPRF:GENerator<Instance>:LIST:FREQuency:ALL
class FrequencyCls[source]

Frequency commands group definition. 2 total commands, 0 Subgroups, 2 group commands

get(index: int) float[source]
# SCPI: SOURce:GPRF:GENerator<Instance>:LIST:FREQuency
value: float = driver.source.gprf.generator.listPy.frequency.get(index = 1)

No command help available

param index:

No help available

return:

frequency: No help available

get_all() List[float][source]
# SCPI: SOURce:GPRF:GENerator<Instance>:LIST:FREQuency:ALL
value: List[float] = driver.source.gprf.generator.listPy.frequency.get_all()

No command help available

return:

all_frequencies: No help available

set(index: int, frequency: float) None[source]
# SCPI: SOURce:GPRF:GENerator<Instance>:LIST:FREQuency
driver.source.gprf.generator.listPy.frequency.set(index = 1, frequency = 1.0)

No command help available

param index:

No help available

param frequency:

No help available

set_all(all_frequencies: List[float]) None[source]
# SCPI: SOURce:GPRF:GENerator<Instance>:LIST:FREQuency:ALL
driver.source.gprf.generator.listPy.frequency.set_all(all_frequencies = [1.1, 2.2, 3.3])

No command help available

param all_frequencies:

No help available