Information

SCPI Commands :

SYSTem:INFormation:SCPI
SYSTem:INFormation:SR
class InformationCls[source]

Information commands group definition. 4 total commands, 1 Subgroups, 2 group commands

get_scpi() str[source]
# SCPI: SYSTem:INFormation:SCPI
value: str = driver.system.information.get_scpi()

Inserts system information in recorded SCPI command lists, for example information on a missing command.

return

info_string: string

get_sr() str[source]
# SCPI: SYSTem:INFormation:SR
value: str = driver.system.information.get_sr()

No command help available

return

sr_info: No help available

set_scpi(info_string: str) None[source]
# SCPI: SYSTem:INFormation:SCPI
driver.system.information.set_scpi(info_string = 'abc')

Inserts system information in recorded SCPI command lists, for example information on a missing command.

param info_string

string

set_sr(sr_info: str) None[source]
# SCPI: SYSTem:INFormation:SR
driver.system.information.set_sr(sr_info = 'abc')

No command help available

param sr_info

No help available

Cloning the Group

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

Subgroups