Auto

SCPI Commands :

HCOPy:FILE:[NAME]:AUTO:STATe
HCOPy:FILE:[NAME]:AUTO
Commands in total: 11
Subgroups: 2
Direct child commands: 2
get_state() bool[source]
# HCOPy:FILE:[NAME]:AUTO:STATe
value: bool = driver.hardCopy.file.name.auto.get_state()

Activates automatic naming of the hard copy files.

Returns:

state: 1 | ON | 0| OFF

get_value() str[source]
# HCOPy:FILE:[NAME]:AUTO
value: str = driver.hardCopy.file.name.auto.get_value()

Queries path and file name of the hardcopy file, if you have enabled Automatic Naming.

Returns:

auto: string

set_state(state: bool) None[source]
# HCOPy:FILE:[NAME]:AUTO:STATe
driver.hardCopy.file.name.auto.set_state(state = False)

Activates automatic naming of the hard copy files.

Parameters:

state – 1 | ON | 0| OFF

Cloning the Group

# Create a copy of the original group, that exists independently
auto_copy = driver.hardCopy.file.name.auto.clone()

Subgroups