State
SCPI Commands :
OUTPut<HW>:[STATe]:PON
OUTPut<HW>:[STATe]
- Commands in total: 2Subgroups: 0Direct child commands: 2
- get_pon() UnchOff[source]
# OUTPut<HW>:[STATe]:PON value: enums.UnchOff = driver.output.state.get_pon()
Defines the state of the RF output signal when the instrument is switched on.
- Returns:
pon: OFF | UNCHanged
- get_value() bool[source]
# OUTPut<HW>:[STATe] value: bool = driver.output.state.get_value()
Activates the RF output signal.
- Returns:
state: 1 | ON | 0| OFF
- set_pon(pon: UnchOff) None[source]
# OUTPut<HW>:[STATe]:PON driver.output.state.set_pon(pon = enums.UnchOff.OFF)
Defines the state of the RF output signal when the instrument is switched on.
- Parameters:
pon – OFF | UNCHanged
- set_value(state: bool) None[source]
# OUTPut<HW>:[STATe] driver.output.state.set_value(state = False)
Activates the RF output signal.
- Parameters:
state – 1 | ON | 0| OFF