Display

SCPI Command :

SYSTem:DISPlay:UPDate
Commands in total: 3
Subgroups: 1
Direct child commands: 1
get_update() bool[source]
# SYSTem:DISPlay:UPDate
value: bool = driver.system.display.get_update()

Defines whether the display is updated while the instrument is in the remote state. If the display is switched off, the normal GUI is replaced by a static image while the instrument is in the remote state. Switching off the display can speed up the measurement. OFF is the recommended state.

Returns:

display_update: ON | 1: The display is shown and updated during remote control. OFF | 0: The display shows a static image during remote control.

set_update(display_update: bool) None[source]
# SYSTem:DISPlay:UPDate
driver.system.display.set_update(display_update = False)

Defines whether the display is updated while the instrument is in the remote state. If the display is switched off, the normal GUI is replaced by a static image while the instrument is in the remote state. Switching off the display can speed up the measurement. OFF is the recommended state.

Parameters:

display_update – ON | 1: The display is shown and updated during remote control. OFF | 0: The display shows a static image during remote control.

Cloning the Group

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

Subgroups