State

SCPI Command :

SYSTem:OPTion:TRIal[:STATe]
class StateCls[source]

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

get() bool[source]
# SCPI: SYSTem:OPTion:TRIal[:STATe]
value: bool = driver.system.option.trial.state.get()

Determines availability of trial option T0. It is pre-installed at the factory on request.

return

state: ON | OFF | 0 | 1 OFF | 0 Switches the function off. The query result indicates the trial license is not available (not installed, expired) . ON | 1 If enabled, you can use additional applications for a limited period of time (90 days from factory installation) . They are accessible from the common ‘Mode’ dialog box (see ‘Selecting the operating mode and applications’) . If the trial license is not available (not installed, expired) the command returns an error (E_OPTION_NA) .

set(state: bool) None[source]
# SCPI: SYSTem:OPTion:TRIal[:STATe]
driver.system.option.trial.state.set(state = False)

Determines availability of trial option T0. It is pre-installed at the factory on request.

param state

ON | OFF | 0 | 1 OFF | 0 Switches the function off. The query result indicates the trial license is not available (not installed, expired) . ON | 1 If enabled, you can use additional applications for a limited period of time (90 days from factory installation) . They are accessible from the common ‘Mode’ dialog box (see ‘Selecting the operating mode and applications’) . If the trial license is not available (not installed, expired) the command returns an error (E_OPTION_NA) .