State

SCPI Command :

CONFigure:GENerator:NPRatio[:STATe]
class StateCls[source]

State commands group definition. 2 total commands, 1 Subgroups, 1 group commands

get() bool[source]
# SCPI: CONFigure:GENerator:NPRatio[:STATe]
value: bool = driver.configure.generator.npratio.state.get()

Activates or deactivates a notch filter on the signal generator.

return

state: ON | OFF | 0 | 1 OFF | 0 Switches the function off ON | 1 Switches the function on

set(state: bool) None[source]
# SCPI: CONFigure:GENerator:NPRatio[:STATe]
driver.configure.generator.npratio.state.set(state = False)

Activates or deactivates a notch filter on the signal generator.

param state

ON | OFF | 0 | 1 OFF | 0 Switches the function off ON | 1 Switches the function on

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.generator.npratio.state.clone()

Subgroups