State

SCPI Commands :

OUTPut<HW>:[STATe]:PON
OUTPut<HW>:[STATe]
class StateCls[source]

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

get_pon() RsSmbv.enums.UnchOff[source]
# SCPI: 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.

return

pon: OFF| UNCHanged

get_value() bool[source]
# SCPI: OUTPut<HW>:[STATe]
value: bool = driver.output.state.get_value()

Activates the RF output signal.

return

state: 1| ON| 0| OFF

set_pon(pon: RsSmbv.enums.UnchOff) None[source]
# SCPI: 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.

param pon

OFF| UNCHanged

set_value(state: bool) None[source]
# SCPI: OUTPut<HW>:[STATe]
driver.output.state.set_value(state = False)

Activates the RF output signal.

param state

1| ON| 0| OFF