System
SCPI Commands :
SYSTem:PRESet
SYSTem:APUP
- Commands in total: 12Subgroups: 7Direct child commands: 2
- get_apup() bool[source]
# SYSTem:APUP value: bool = driver.system.get_apup()
If enabled, the instrument powers up automatically when it is connected to the mains voltage.
- Returns:
auto_power_up: OFF | ON
- preset(opc_timeout_ms: int = -1) None[source]
# SYSTem:PRESet driver.system.preset()
Resets the instrument to the default state, has the same effect as
*RST.- Parameters:
opc_timeout_ms – Maximum time to wait in milliseconds, valid only for this call.
- set_apup(auto_power_up: bool) None[source]
# SYSTem:APUP driver.system.set_apup(auto_power_up = False)
If enabled, the instrument powers up automatically when it is connected to the mains voltage.
- Parameters:
auto_power_up – OFF | ON
Cloning the Group
# Create a copy of the original group, that exists independently
system_copy = driver.system.clone()
Subgroups