State

SCPI Commands

SOURce:VOLTage:POWer<Source>:LEVel:STATe
class StateCls[source]

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

get(source=Source.Default) bool[source]
# SCPI: SOURce:VOLTage:POWer<1|2>:LEVel[:STATe]
value: bool = driver.source.voltage.power.level.state.get(source = repcap.Source.Default)

This command turns the supply voltage source (Vsupply) on and off. Note that DC power is actually supplied only if you additionally activate the outputs in general.

INTRO_CMD_HELP: Prerequisites for this command

  • Turn on DC power sources (method RsFswp.Applications.K30_NoiseFigure.Source.Voltage.State.set) .

param source

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Power’)

return

state: ON | OFF | 1 | 0

set(state: bool, source=Source.Default) None[source]
# SCPI: SOURce:VOLTage:POWer<1|2>:LEVel[:STATe]
driver.source.voltage.power.level.state.set(state = False, source = repcap.Source.Default)

This command turns the supply voltage source (Vsupply) on and off. Note that DC power is actually supplied only if you additionally activate the outputs in general.

INTRO_CMD_HELP: Prerequisites for this command

  • Turn on DC power sources (method RsFswp.Applications.K30_NoiseFigure.Source.Voltage.State.set) .

param state

ON | OFF | 1 | 0

param source

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Power’)