System

SCPI Commands :

SYSTem:DID
SYSTem:PRESet
SYSTem:PRESet:ALL
SYSTem:PRESet:BASE
SYSTem:RESet
SYSTem:RESet:ALL
SYSTem:RESet:BASE
SYSTem:SREStore
SYSTem:SSAVe
SYSTem:TZONe
SYSTem:VERSion
class SystemCls[source]

System commands group definition. 43 total commands, 8 Subgroups, 11 group commands

get_did() str[source]
# SCPI: SYSTem:DID
value: str = driver.system.get_did()

No command help available

return:

pseudo_string: No help available

get_tzone() str[source]
# SCPI: SYSTem:TZONe
value: str = driver.system.get_tzone()

No command help available

return:

pseudo_string: No help available

get_version() str[source]
# SCPI: SYSTem:VERSion
value: str = driver.system.get_version()

Queries the SCPI version the instrument’s command set complies with.

return:

version: string

preset(pseudo_string: str) None[source]
# SCPI: SYSTem:PRESet
driver.system.preset(pseudo_string = 'abc')


    INTRO_CMD_HELP: Triggers an instrument reset. It has the same effect as:

    - The *RST command
    - The 'SGMA-GUI > Instrument Name > Preset' function. However, the command does not close open GUI dialogs like the function does.

    :param pseudo_string: No help available
preset_all(pseudo_string: str) None[source]
# SCPI: SYSTem:PRESet:ALL
driver.system.preset_all(pseudo_string = 'abc')

No command help available

param pseudo_string:

No help available

preset_base(pseudo_string: str) None[source]
# SCPI: SYSTem:PRESet:BASE
driver.system.preset_base(pseudo_string = 'abc')

No command help available

param pseudo_string:

No help available

reset(pseudo_string: str) None[source]
# SCPI: SYSTem:RESet
driver.system.reset(pseudo_string = 'abc')

No command help available

param pseudo_string:

No help available

reset_all(pseudo_string: str) None[source]
# SCPI: SYSTem:RESet:ALL
driver.system.reset_all(pseudo_string = 'abc')

No command help available

param pseudo_string:

No help available

reset_base(pseudo_string: str) None[source]
# SCPI: SYSTem:RESet:BASE
driver.system.reset_base(pseudo_string = 'abc')

No command help available

param pseudo_string:

No help available

set_srestore(data_set: int) None[source]
# SCPI: SYSTem:SREStore
driver.system.set_srestore(data_set = 1)

No command help available

param data_set:

No help available

set_ssave(data_set: int) None[source]
# SCPI: SYSTem:SSAVe
driver.system.set_ssave(data_set = 1)

No command help available

param data_set:

No help available

set_tzone(pseudo_string: str) None[source]
# SCPI: SYSTem:TZONe
driver.system.set_tzone(pseudo_string = 'abc')

No command help available

param pseudo_string:

No help available

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.system.clone()

Subgroups